|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4700 ] | I24connect |
---|---|
Organisation name | I24connect |
Short name or acronym | I24connect |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | P.O box 851925 |
Postal Code | 11185 |
City | Amman |
Country | Jordan |
Phone | +962 65854816 |
Fax | +962 65854273 |
info_(on)_i24connect.com | |
Organisation URL | http://www.i24connect.com |
Logo | Description |
![]() |
1- Inbound and outbound customer care services 2-Sales 3-Telemarketing 4-Email/chat support 5-Back office support 6-Multi language and communication support 7-Research and survey 8- Data entry 9- Telesales |
Contact | |
Name | COO Majdi Ismair |
Function | Operations |
Department | Management |
majdi.ismair_(on)_24connect.com | |
Phone | +962 65854816 |
Fax | +962 58584273 |
![]() |
Last update: 2016-04-16 09:28:29 #!/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" |