|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3139 ] | Mi-Quality |
---|---|
Organisation name | Mi-Quality |
Short name or acronym | Mi-Quality |
Organisation type | Contact Centre Training/Voice Recording/ACD/Consulting |
Activity type | Auckland |
Address | 4a Te Kea Place North Harbour Business Park |
Postal Code | 1031 |
City | North Shore City |
Country | New Zealand (Aotearoa) |
Phone | + +64 9 414 9287 |
Fax | + +64 9 414 9288 |
j.supra_(on)_mi-quality.co.nz | |
Organisation URL | http://mi-quality.com |
Logo | Description |
|
Mi-Quality is the leading consultancy in New Zealand focussing on Contact Centres. For informtation on what we do,visit our webistes: www.mi-quality.com www.tcl.co.nz |
Contact | |
Name | Ms Jacqueine Supra |
Function | Principal Consultant |
Department | |
j.supra_(on)_mi-quality.co.nz | |
Phone | + +64 9 4149287 |
Fax | + +64 9 414 9288 |
![]() |
Last update: 2003-11-17 21:15:11 #!/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" |