|
|
Organisation profile: First Class Assist
[ ID = 4590 ] | 1st Class Assist |
Organisation name | First Class Assist |
Short name or acronym | 1st Class Assist |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 208 E King St Suite I #1053 |
Postal Code | 17257 |
City | Shippensburg |
Country | United States |
Phone | +1 888-444-0049 |
Fax | +1 888-666-0082 |
Email | info_(on)_firstclassassist.com |
Organisation URL | http://www.firstclassassist.com |
Logo | Description |
|
US based virtual inbound/outbound outsourcing call center, live answering
service, receptionist, customer support and administration services.
|
| Contact |
Name | |
Function | |
Department | |
Email | info_(on)_firstclassassist.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2013-08-09 20:13:42
#!/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"
|
|