|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4077 ] | Extensya |
---|---|
Organisation name | Extensya |
Short name or acronym | Extensya |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Mecca Street 17097 |
Postal Code | 11195 |
City | Amman |
Country | Jordan |
Phone | +962 65777700 |
Fax | +962 65777701 |
info_(on)_extensya.com | |
Organisation URL | http://www.extensya.com |
Logo | Description |
![]() |
If you truly want to transform your business cycle, your brand experience and your customers loyalty, handing your interaction to a bunch of people-on-desks-with-phones simply wont cut it. Our mission at Extensya is to help businesses improve their performance by managing their business to business interactions of contact management and support solutions. At the heart of Extensyas infrastructure is a world-class Contact Management Center, which is operated by professionally trained agents, supported by an outstanding technical infrastructure and managed by a team of expertise in the field of Contact Management Solutions. Far from being a traditional call center operation, Extensya strives to be a reliable business partner. Extensya has developed unique integrated contact management and business support solutions, which aim at fueling customers operations once embedded into their business cycle. |
Contact | |
Name | Account Manager Issam Ashkar |
Function | Managing Accounts & prospects |
Department | Commercial Department |
issam.ashkar_(on)_extensya.com | |
Phone | +962 65777700 |
Fax | +962 65777701 |
![]() |
Last update: 2009-05-07 08:30:05 #!/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" |