|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3382 ] | Veritape Ltd - call recording made simple |
---|---|
Organisation name | Veritape Ltd - call recording made simple |
Short name or acronym | Veritape Ltd - call recording made simple |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Alkrington Hall West, Alkrington |
Postal Code | M24 1WD |
City | Manchester |
Country | United Kingdom |
Phone | + +44 (0) 161 643 1556 |
Fax | + |
sales_(on)_veritape.com | |
Organisation URL | http://www.veritape.com |
Logo | Description |
![]() |
Established in 1998, Veritape provides call recording services to a diverse range of companies, including those in the financial, legal, charity, government, healthcare and tourism sectors. Veritape's call recording software has been installed on over 300,000 computers worldwide, helping its clients improve customer service, staff training and profitability. |
Contact | |
Name | Mr. Arthur Shirley |
Function | |
Department | |
sales_(on)_veritape.com | |
Phone | + +44 (0) 161 643 1556 |
Fax | + |
![]() |
Last update: 2004-07-19 13:19:18 #!/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" |