|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4755 ] | Roen Connection |
---|---|
Organisation name | Roen Connection |
Short name or acronym | Roen Connection |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 81-83 Ciurchi |
Postal Code | 700313 |
City | Iasi |
Country | Romania |
Phone | +44 749378632 |
Fax | + |
contact_(on)_roenconnection.eu | |
Organisation URL | http://roenconnection.eu/ |
Logo | Description |
![]() |
Roen Connection is a call center company based in Romania. We work specially for English language and we have an expertise for over 4 years. |
Contact | |
Name | Mr Bogdan Aelisavetei |
Function | Project Manager |
Department | Management |
contact_(on)_roenconnection.eu | |
Phone | +44 749378632 |
Fax | + |
![]() |
Last update: 2015-05-14 14:17:00 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |