elsnet |
Organisation profile: Euroanswer |
[ ID = 4570 ] | EA |
---|---|
Organisation name | Euroanswer |
Short name or acronym | EA |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 105A Oltenitei Street |
Postal Code | |
City | Bucharest, Skopje |
Country | Romania |
Phone | +40 213082000 |
Fax | +40 213082088 |
sales_(on)_euroanswer.co.uk | |
Organisation URL | http://www.euroanswer.co.uk |
Logo | Description |
![]() |
Multilingual help-desk/back-office support, based in Eastern Europe (Romania and Macedonia). Why Euroanswer? - cost-effective, high-quality solution for your multilingual help-desk or back-office functionality - cost-effective white-label contact-centre / help-desk technology - multiple languages. We named ourselves Euroanswer, cause we aim to respond to your needs in any European languages you might think of....and others such Arabic. So far Euroanswer has successfully completed services in 37 different languages. |
Contact | |
Name | Mr. Lucian Neagoe Lucian Neagoe |
Function | Managing partner |
Department | |
lucian.neagoe_(on)_euroanswer.co.uk | |
Phone | +40 722523600 |
Fax | +40 213082088 |
![]() |
Last update: 2013-07-08 14:19:06 #!/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" |