|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1724 ] | ATIO |
---|---|
Organisation name | ATIO Corporation |
Short name or acronym | ATIO |
Organisation type | Specialist ICT Solutions & Services provider |
Activity type | |
Address | P O Box 4467, Rivonia |
Postal Code | 2128 |
City | JHB |
Country | South Africa |
Phone | + +27 11 235 7000 |
Fax | + +27 11 807 3568 |
info_(on)_atio.com | |
Organisation URL | http://www.atio.com |
Logo | Description |
![]() |
ATIO Corporation is a specialist ICT Solutions and Services provider targeting clearly defined niche markets in the fields of: Contact Centres, Unified Communications, CRM, Telecom Services, eCommerce and Mobile Solutions. |
Contact | |
Name | Adri Kilian |
Function | Marketing Manager |
Department | Marketing |
info_(on)_atio.com | |
Phone | + +27 11 235 7000 |
Fax | + +27 11 807 3568 |
![]() |
Last update: 2003-01-15 14:15:49 #!/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" |