|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4901 ] | VHT |
---|---|
Organisation name | Virtual Hold Technology |
Short name or acronym | VHT |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 3875 Embassy Pkwy. Suite 350 |
Postal Code | 44333 |
City | Akron |
Country | United States |
Phone | +1 800-854-1815 |
Fax | + |
marketing_(on)_virtualhold.com | |
Organisation URL | https://www.virtualhold.com/ |
Logo | Description |
![]() |
VHT is the innovator in enhancing the customer experience. Deployed on premise or in the cloud, VHTs Callback solution eliminates hold time reducing caller frustration. Our customer engagement solution creates a seamless customer experience across touchpoints in a simple, single user interface. |
Contact | |
Name | VP, Marketing Jaime Bailey |
Function | Marketing |
Department | Marketing |
marketing_(on)_virtualhold.com | |
Phone | +1 800-854-1815 |
Fax | + |
![]() |
Last update: 2017-09-15 13:46:43 #!/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" |