|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3871 ] | CCH |
---|---|
Organisation name | Call Centre Helper |
Short name or acronym | CCH |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Trevethin dixton road |
Postal Code | NP25 3PR |
City | Monmouth |
Country | United Kingdom |
Phone | + |
Fax | + |
jonty_(on)_callcentrehelper.com | |
Organisation URL | http://www.callcentrehelper.com |
Logo | Description |
![]() |
Call Centre Helper is a popular UK online call centre magazine. Articles on speech recognition and call centre technology, management as well as over 300 call centre management jobs. |
Contact | |
Name | Mr Jonty Pearce |
Function | Editor |
Department | Editorial |
jonty_(on)_callcentrehelper.com | |
Phone | +44 1600714546 |
Fax | + |
![]() |
Last update: 2008-06-13 19:18:53 #!/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" |