|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1051 ] | Vocalis Group plc |
---|---|
Organisation name | Vocalis Group plc |
Short name or acronym | Vocalis Group plc |
Organisation type | Company |
Activity type | Call centersSpeech technology |
Address | Chaston House, Mill Court |
Postal Code | CB2 5LD |
City | Great Shelford, Cambridge |
Country | United Kingdom |
Phone | + +44 1223 846177 |
Fax | + +44 1223 846178 |
enquiries_(on)_vocalis.com | |
Organisation URL | http://www.vocalis.com |
Logo | Description |
![]() |
Vocalis Group is a world leader in speech technology, call processing applications and innovative Internet telephony solutions. Sophisticated product design and delivery with ongoing technical support help our customers to increase business efficiency and sustain a competitive edge. Our products include SPEECHtel, providing speech-driven telephony services for network operators; SpeechMail, allowing access to email from any telephone; SpeecHTML, using Web technology to provide interactive telephone services; and Vocalis SpeechWare, our core technology available for licensing. |
Member of elsnet | Contact |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-05-10 14:14:40 #!/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" |