|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3673 ] | Hindin |
---|---|
Organisation name | Hindin Solutions |
Short name or acronym | Hindin |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Level 4, 186 Hereford St, |
Postal Code | 8014 |
City | Christchurch |
Country | New Zealand (Aotearoa) |
Phone | +64 33653200 |
Fax | +64 33653700 |
info_(on)_hindin.co.nz | |
Organisation URL | http://www.hindin.co.nz |
Logo | Description |
![]() |
Hindin Solutions, a 100% New Zealand software house, are experts in software development, support and consultancy in the arena of Contact Centres & Customer Service, Procurement & Contracts Management, CRM, and Stakeholder Management. Principally serving large Government departments, local authorities and tertiary education providers, we appreciate the challenge of dealing with copious quantities of information, operating across organisational information silos, managing compliance, ensuring accountability and streamlining service delivery. |
Contact | |
Name | General Manager Mark English |
Function | Sales & Marketing |
Department | General Management |
info_(on)_hindin.co.nz | |
Phone | +64 33653200 |
Fax | + |
![]() |
Last update: 2009-01-19 00:09:24 #!/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" |