|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3544 ] | Xceed |
|---|---|
| Organisation name | Xceed |
| Short name or acronym | Xceed |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | The Smart Village, km 28 Cairo-Alex Road |
| Postal Code | 111 |
| City | Cairo |
| Country | Egypt |
| Phone | +202 3776 3000 |
| Fax | +202 37763001 |
| info_(on)_xceedcc.com | |
| Organisation URL | http://www.xceedcc.com |
| Logo | Description |
![]() |
Xceed, the largest and most sophisticated contact center in the Southern Mediterranean region with a capacity of 1600 web-enabled, multi-channel workstations, it offers inbound / outbound integrated customer contact solutions. It currently manages programs for clients covering four different continents, in eight languages. Xceed is the first and only COPC-2000®, ISO 14001: 2004, ISO 9001:2000, and OHSAS 18001:1999 certified in North Africa and Southern Mediterranean Region. |
| Contact | |
| Name | Sales and Business Development Director Heba Zaki |
| Function | Sales and Business Development |
| Department | Sales and Business Development |
| heba.zaki_(on)_xceedcc.com | |
| Phone | +202 3776 3018 |
| Fax | +202 3776 3001 |
|
|
Last update: 2008-11-13 13:58: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" |