|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3719 ] | Infinity Contact Maker & BPO |
---|---|
Organisation name | Infinity BPO |
Short name or acronym | Infinity Contact Maker & BPO |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Cyber Tour, 6e étage, Cyber Cité |
Postal Code | N/A |
City | Ebene |
Country | Mauritius |
Phone | +230 403-8600 |
Fax | +230 467-3392 |
p.john_(on)_infinity.mu | |
Organisation URL | http://www.infinity.mu |
Logo | Description |
![]() |
Infinity Contact Maker & BPO is a leading call centre located at the heart of the Ebene Cyber City in Mauritius. Infinity employs over 800 collaborators deployed in Mauritius and throughout the world... |
Contact | |
Name | Mr Patrick JOHN |
Function | Webmaster |
Department | Web Development |
p.john_(on)_infinity.mu | |
Phone | +230 403-8610 |
Fax | +230 403-3392 |
![]() |
Last update: 2006-11-15 16:33:20 #!/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" |