|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4539 ] | SCC |
---|---|
Organisation name | Softxpert Call Center |
Short name or acronym | SCC |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 75 Khalil El Masry St. - Kafr Abdo |
Postal Code | |
City | Alexandria |
Country | Egypt |
Phone | +2 035234763 |
Fax | +2 035234763 |
info_(on)_softxpert.com | |
Organisation URL | http://softxpert.com |
Logo | Description |
![]() |
With a reported high rate of first call resolution and a proven record of satisfied customers as well as a team of highly proficient agents and a state-of-the-art infrastructure, Softxpert Call Center gains its distinguished edge. The experience we have gained from our extended liaison with both American and European accounts has empowered us to win the trust and even exceed the expectations of so many clients into whose success we have contributed. Services we provide: Customer Service(inbound and outbound) Technical Support Telesales Billing Services |
Contact | |
Name | Marketing Executive Eman Battour |
Function | |
Department | Sales and Marketing |
eman.battour_(on)_softxpert.com | |
Phone | +2 5221716 |
Fax | +2 5221716 |
![]() |
Last update: 2013-02-09 22:27:59 #!/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" |