Organisation profile: Call Centre Technology Ltd
  
 
 
|  [ ID = 1610 ]  | cct  |  
| Organisation name | Call Centre Technology Ltd  |  
| Short name or acronym | cct  |  
| Organisation type | Other  |  
| Activity type | Language or Speech Technology deployer  |  
| Address  | Oxleigh House, 540 Bristol Business Park  |  
| Postal Code  | BS16 1EJ  |  
| City  | Bristol, Avon  |  
| Country  | United Kingdom  |  
| Phone  | +44 0117 311 3311 | 
 
| Fax  | +44 0117 311 3322 |  
| Email  | andrew.towle_(on)_callct.co.uk  |  
| Organisation URL  | http://www.callct.co.uk  |  
| Logo | Description  |  
  | 
 
  |  
| 
  
 | Contact |  
| Name | Mr Andrew Towle  |  
| Function |   |  
| Department |   |  
| Email | andrew.towle_(on)_callct.co.uk  |  
| Phone | +44 0117 311 5807 |  
| Fax | +  |  
 
 
Update this profile
 | 
Last update: 2005-06-10 13:39:15
#!/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"
 |  
 
  
  
   
 
 
 
 
 
 
    
   |