|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4594 ] | CALLITY |
|---|---|
| Organisation name | WEBCLOUD |
| Short name or acronym | CALLITY |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | Electromagnetica Business Park, 266-268 Calea Rahovei, Corp 1, 2nd Floor, District 5 |
| Postal Code | 70000 |
| City | Bucharest |
| Country | Romania |
| Phone | +40 310050457 |
| Fax | +40 310050457 |
| sales_(on)_callity.eu | |
| Organisation URL | http://www.callity.eu |
| Logo | Description |
![]() |
Romanian Call Center dedicated to quality and efficiency Languages: Romanian, English, French, German, Italian, Spanish Expertise in Customer Care, HelpDesk, BPO activities. |
| Contact | |
| Name | CEO Bogdan Andrei |
| Function | Management |
| Department | Management |
| sales_(on)_callity.eu | |
| Phone | +40 310050457 |
| Fax | +40 310050457 |
|
|
Last update: 2013-09-11 09:35:19 #!/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" |