|
|
Organisation profile: ABC Datacall Ltd
[ ID = 3818 ] | ABC Datacall Ltd |
Organisation name | ABC Datacall Ltd |
Short name or acronym | ABC Datacall Ltd |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | ABC Centre |
Postal Code | PO Box 139 |
City | Port Louis |
Country | Mauritius |
Phone | +230 2174269 |
Fax | +230 217-1908 |
Email | efabcg_(on)_intnet.mu |
Organisation URL | http://www.datacall.com |
Logo | Description |
 |
ABC Datacall Ltd is a call centre with bilingual expertise (french & english)
both voice and translation. We offer a 24/7 service and competitive rates for
both outbound and inbound campaigns.
|
| Contact |
Name | Mr. Fung |
Function | Director |
Department | |
Email | efabcg_(on)_intnet.mu |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2007-10-22 11:17:25
#!/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"
|
|