[ ID = 3868 ] | VCCI |
Organisation name | Vcare Call Centers India, Inc. |
Short name or acronym | VCCI |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 701 Fifth Avenue Suite 4200 Seattle, WA 98104 |
Postal Code | 98104 |
City | Seattle |
Country | United States |
Phone | + 206.441.7760 |
Fax | + |
Email | sales_(on)_vcarecallcenter.com |
Organisation URL | http://www.vcarecallcenter.com |
Logo | Description |
 |
Vcare Call Centers India (p) Ltd., is a wholly owned subsidiary of the US
Corporation Call Centers India Inc. It is a CISCO powered company and center is
a 100% IP based network and uses CISCO technology platform.
|
| Contact |
Name | Marketing Team |
Function | Call Center Services |
Department | Marketing |
Email | sales_(on)_vcarecallcenter.com |
Phone | + 206.441.7760 |
Fax | + |
Update this profile
|
Last update: 2008-06-09 06:09:58
#!/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"
|