[ ID = 3624 ] | connect2inc |
Organisation name | Connect2 Philippines Inc. |
Short name or acronym | connect2inc |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 26th Street Cor. 3rd Avenue Crescent Parkwest |
Postal Code | 1634 |
City | Bonifacio Global City, Taguig |
Country | Philippines |
Phone | +632 8117400 |
Fax | +632 8117409 |
Email | sales_(on)_connect2inc.com |
Organisation URL | http://www.connect2inc.com |
Logo | Description |
|
Connect2inc is a Philippines call center that offers outsourced customer
service solutions through email, voice, and live chat. Connect2inc provides a
seamless outsourced customer support and world class customer care that gives
customer satisfaction.
|
| Contact |
Name | Ms. Alexis Rull |
Function | SEO Staff |
Department | IT |
Email | asalita_(on)_connect2inc.com |
Phone | +632 8117400 |
Fax | +632 8117409 |
Update this profile
|
Last update: 2005-12-05 10:23:43
#!/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"
|