|
|
Organisation profile: Call Centers 24x7
[ ID = 3476 ] | Call Centers 24x7 |
Organisation name | Call Centers 24x7 |
Short name or acronym | Call Centers 24x7 |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 107 N Oak Street |
Postal Code | 98362 |
City | Port Angeles |
Country | United States |
Phone | + 1 360 4524527 |
Fax | + 1 360 4170112 |
Email | cc24x7_(on)_callcenters24x7.com |
Organisation URL | http://www.callcenters24x7.com |
Logo | Description |
 |
Call Centers 24x7 provides "traditional" call center services, business process
outsourcing, and web site services that are provisioned entirely within the
United States. Our focus is on value through quality and customer service
leveraging superior tools.
|
| Contact |
Name | CEO Shane Miller |
Function | CEO |
Department | |
Email | smiller_(on)_callcenters24x7.com |
Phone | + 1 360 4524527 |
Fax | + |
Update this profile
|
Last update: 2008-03-03 05:22:37
#!/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"
|
|