| [ ID = 3764 ] | CCI |
| Organisation name | Call Centers India |
| Short name or acronym | CCI |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 1200 Western Ave. Suite 914, |
| Postal Code | 98101 |
| City | Seattle, WA |
| Country | United States |
| Phone | +1 206-384-4669 |
| Fax | + |
| Email | vcci.marketingteam_(on)_gmail.com |
| Organisation URL | http://www.callcentersindia.com |
| Logo | Description |
 |
The one stop shop for all call centers need. Call Centers in India is a leading
provider of offshore contact center and business process outsourcing services
and working with simple language or speech technology.
|
|
| Contact |
| Name | Call Centers Marketing Team Marketing |
| Function | SEO |
| Department | Internet Marketing |
| Email | vcci.marketingteam_(on)_gmail.com |
| Phone | +1 206-384-4669 |
| Fax | + |
Update this profile
|
Last update: 2007-05-11 12:32:28
#!/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"
|