Organisation profile: TLI Software
[ ID = 4042 ] | TLI |
Organisation name | TLI Software |
Short name or acronym | TLI |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | #6, A S Chambers, 4th Floor, 80ft Road, Koramangala |
Postal Code | 560095 |
City | Bangalore |
Country | India |
Phone | +91 80 4130 3461 |
Fax | + |
Email | info_(on)_tlisoftware.com |
Organisation URL | http://www.tlisoftware.com |
Logo | Description |
 |
TLI offers business process outsourcing and call center services from its
global delivery center in Bangalore, India
|
| Contact |
Name | Manager Bryan Smith |
Function | Program Management |
Department | Management |
Email | information_(on)_tlisoftware.com |
Phone | +91 80 4130 3462 |
Fax | + |
Update this profile
|
Last update: 2009-03-17 05:04:23
#!/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"
|
|