|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3606 ] | Envision |
---|---|
Organisation name | Envision Telephony, Inc. |
Short name or acronym | Envision |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 520 Pike Street, Suite 1600 |
Postal Code | 98101 |
City | Seattle |
Country | United States |
Phone | +011 206-225-0800 |
Fax | +011 206-225-0801 |
info.request_(on)_envisioninc.com | |
Organisation URL | http://www.envisioninc.com |
Logo | Description |
![]() |
Envision Telephony, Inc. is a global, award-winning provider of software and services that improve performance from the contact center to the enterprise. The companys flexible, integrated solutions enable customers to consistently deliver legendary customer experiences by improving agent effectiveness and contact center and enterprise performance. Envisions software includes business intelligence, speech analytics, workforce management and Click2Coach® (Envision Quality Monitoring and Envision eLearning). The companys solutions are deployed across thousands of desktops in both a telephony and a back-office environment. Envision offers business consulting, implementation, training and support services using a proven, ROI-driven methodology that delivers rapid and reliable results. More information can be found at http://www.envisioninc.com. |
Contact | |
Name | Marketing Specialist II Jill Majors |
Function | Marketing |
Department | Marketing |
jill.majors_(on)_envisioninc.com | |
Phone | +011 206-225-0800 |
Fax | +011 206-225-0801 |
![]() |
Last update: 2007-10-17 23:45:17 #!/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" |