[ ID = 3639 ] | LiveHelpBPO |
Organisation name | LiveHelpBPO |
Short name or acronym | LiveHelpBPO |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | LiveHelpBPO plot#47.gayatrinagar,behind maitrivanam,Ameerpet, |
Postal Code | Hyderabad,AP,500016,INDIA |
City | Hederabad |
Country | India |
Phone | +91 09849544486 |
Fax | +91 4023741911 |
Email | ravijdchandra_(on)_livehelpbpo.com |
Organisation URL | http://www.livehelpbpo.com |
Logo | Description |
 |
LivehelpBPO is a 24/7/365 BPO service provider undertaking live chat services,
both inbound/outbound services, email support, Data Entry working dedicatedly
to tackle global competition and Capabilities and providing our clients with
high comfort levels.
|
| Contact |
Name | Mr.Ravichandra |
Function | COO |
Department | |
Email | ravijdchandra_(on)_livehelpbpo.com |
Phone | +91 09849544486 |
Fax | +91 91 40 23741911 |
Update this profile
|
Last update: 2006-02-10 13:46:01
#!/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"
|