|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3709 ] | call-centres.com |
---|---|
Organisation name | www.call-centres.com |
Short name or acronym | call-centres.com |
Organisation type | Private company |
Activity type | Other expertise relevant for Language or Speech Technology |
Address | 12 Bosley Close |
Postal Code | CV36 4QA |
City | Shipston On Stour |
Country | United Kingdom |
Phone | +44 207 8730 3224 |
Fax | + |
editor_(on)_call-centres.com | |
Organisation URL | http://www.call-centres.com/whoswho.htm |
Logo | Description |
![]() |
www.call-centres.com/whoswho.htm is a directory of people involved in the call centre industry including language and speech related issues for the offshore call centre industry |
Contact | |
Name | Mr Robert OMalley |
Function | |
Department | |
editor_(on)_call-centres.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2006-09-26 01:17:08 #!/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" |