|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3560 ] | SOFICA |
---|---|
Organisation name | Sofica Group Jsc. |
Short name or acronym | SOFICA |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Business Park Sofia |
Postal Code | 1766 |
City | Sofia |
Country | Bulgaria |
Phone | +359 24008500 |
Fax | +359 24008502 |
info_(on)_sofica-group.com | |
Organisation URL | http://www.sofica-group.com |
Logo | Description |
![]() |
SOFICA is a multilingual business process outsourcing provider based in Sofia, Bulgaria. Call center operates on a 24x7 x 365 basis. Handles incoming and outgoing traffic. Our agents speak English, German, Bulgarian, French, Spanish, Italian, Dutch, Russian, Turkish, Portuguese, Serbian. We've selected equipment form the leading providers of call centre technology. Additional features:VoIP, IVR, CATI, ACD and other. |
Contact | |
Name | Mr Borislav Atanassov |
Function | |
Department | |
info_(on)_sofica-group.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-08-03 09:57:03 #!/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" |