|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4807 ] | iCall |
---|---|
Organisation name | iCall Outsourcing |
Short name or acronym | iCall |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 17 Eltaqa St. Nasr City |
Postal Code | ## your postal code |
City | Cairo |
Country | Egypt |
Phone | +2 01227373391 |
Fax | + |
info_(on)_icall.com.eg | |
Organisation URL | http://www.icall.com.eg |
Logo | Description |
![]() |
iCALL outsourcing established on 2013 aiming to provide high quality contact center and business process outsourcing (BPO) services to our clients located all around the globe. Our services will enable our customers to manage every kind of customer interactions efficiently and intelligently through the whole life cycle starting with prospecting going through acquisition and value management and ending with customer care and support consuming all the available communication channels like (Voice, Mail, Chat, SMSs, FAXs, Social Media) while integrating easily with our open platform that facilitates the interaction process with end users while maintaining clean and track able set of customer interactions history and provide an insight access to better identify and assure quality standards are met. |
Contact | |
Name | General Manager Karim Mokhtar |
Function | ## your function |
Department | ## your department |
karim.mokhtar_(on)_icall.com.eg | |
Phone | + |
Fax | + |
![]() |
Last update: 2016-05-04 14:07:55 #!/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" |