|
|
Organisation profile: Ahlan contact center communications
[ ID = 4375 ] | Ahlan contact center |
Organisation name | Ahlan contact center communications |
Short name or acronym | Ahlan contact center |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 8 Road 257 Maadi |
Postal Code | Maadi 0000 |
City | Maadi, Helwan |
Country | Egypt |
Phone | +002 25215183 |
Fax | +002 25215185 |
Email | info_(on)_ahlancontactcenter.com |
Organisation URL | http://www.ahlancontactcenter.com |
Logo | Description |
|
We are specialized in Inbound and Outbound Activities for US companies. Have
over then three years of US experience. Our agents have neutral american accent
with excellent technology background that allows us to perform well
|
| Contact |
Name | Hesham Mousa Hesham Mousa |
Function | Strategy & Development |
Department | Business Development |
Email | hefawzy_(on)_ahlancontactcenter.com |
Phone | +002 0020110222202 |
Fax | +002 0020110112002 |
Update this profile
|
Last update: 2011-02-07 16:28:37
#!/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"
|
|