Organisation profile: VorTecs, Inc.
[ ID = 2130 ] | VorTecs, Inc. |
Organisation name | VorTecs, Inc. |
Short name or acronym | VorTecs, Inc. |
Organisation type | Company |
Activity type | Speech technology |
Address | 100 Beard Sawmill Road |
Postal Code | 06484 |
City | Shelton, CT |
Country | United States |
Phone | + +1 203 929 5005 |
Fax | + +1 203 929 7733 |
Email | info_(on)_vortecs.com |
Organisation URL | http://www.vortecs.com/ |
Logo | Description |
 |
VorTecs is a leading professional services and consulting practice dedicated to providing the technical solutions and practical experience to implement, optimize or expand the capabilities and performance of your contact centers. Additionally, VorTecs has a speech technology product called Spot It! Spot It! automates the quality monitoring process of contact center agents. It is the worlds first application to allow contact center supervisors to define the business rules for word and/or phrase spotting of live monitored calls or for processing the recorded conversations of agents and customers.
|
| Contact |
Name | Michael Bates |
Function | |
Department | |
Email | info_(on)_vortecs.com |
Phone | + 540-338-0360 |
Fax | + 978-246-2692 |
Update this profile
|
Last update: 2002-04-15 15:05:06
#!/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"
|
|