[ ID = 3367 ] | CCU |
Organisation name | Call Center USA |
Short name or acronym | CCU |
Organisation type | 1 Private company |
Activity type | 8 Call center with specific expertise in Lang+Speech |
Address | 2400 Fourth Ave. Suite 555, |
Postal Code | 98121 |
City | Seattle |
Country | United States |
Phone | + +1 (206) 841-5566 |
Fax | + |
Email | sales_(on)_callcentersus.com |
Organisation URL | http://www.callcentersus.com |
Logo | Description |
 |
The one stop shop for all call centers needs.
|
| Contact |
Name | SEO Raj |
Function | |
Department | marketing |
Email | raj_(on)_callcentersindia.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2004-06-03 10:28:09
#!/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"
|