|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4545 ] | 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 |
submission_(on)_softxpert.com | |
Organisation URL | http://softxpert.com |
Logo | Description |
![]() |
US Operated and Managed Unparalleled Level of Customer Satisfaction. Experience In US Dialing. High-quality, Cost-effective and Time-bound Solutions to Small & Medium Enterprises Reliable State-of-the-art Technology and Infrastructure Experience in Customer Service, Billing and Technical Support Processes Inbound & Outbound services. Voice Support, Email Support and Web Services First Call Resolution. Call Monitoring and Quality Control With a Capacity of 120 Seat and Expandable We offer first month with no contract commitment Visit our website and test the quality of our call agents |
Contact | |
Name | Marketing Executive Eman Battour |
Function | Marketing |
Department | Sales and Marketing |
submission_(on)_softxpert.com | |
Phone | +2 01025559439 |
Fax | +2 035221716 |
![]() |
Last update: 2013-03-15 02:48:36 #!/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" |