|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0529 ] | HTHTS |
---|---|
Organisation name | High Tech High Touch Solutions, Inc. |
Short name or acronym | HTHTS |
Organisation type | Company |
Activity type | Call centers |
Address | PMB 426, 14241 NE Woodinville-Duvall Rd |
Postal Code | 98072-8564 |
City | Woodinville, WA |
Country | United States |
Phone | + +1 425 398 9292 |
Fax | + +1 425 398 9494 |
cwoolley_(on)_hthts.com | |
Organisation URL | http://www.hthts.com |
Logo | Description |
![]() |
High Tech High Touch Solutions, Inc. is a full-service technical support consulting firm, which creates support centers that show customer satisfaction is the most important aspect of any business. Using innovative techniques High Tech High Touch Solutions, Inc. can make your technical support group the heart of your enterprise. |
Contact | |
Name | Support Services Manager Christine Woolley |
Function | |
Department | |
cwoolley_(on)_hthts.com | |
Phone | + 425-398-9292 |
Fax | + 425-398-9494 |
![]() |
Last update: 2002-04-16 00:02:10 #!/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" |