|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2483 ] | Centre-ing Services |
---|---|
Organisation name | Centre-ing Services cc |
Short name or acronym | Centre-ing Services |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | P.O.Box 50087, V & A Waterfront |
Postal Code | 8002 |
City | Cape Town Cape Province |
Country | South Africa |
Phone | + +27 21 762 9545 |
Fax | + +27 21 762 9545 |
centserv_(on)_iafrica.com | |
Organisation URL | http://www.centre-ingservices.com |
Logo | Description |
![]() |
Creates customised solutions for dissolving customer satisfaction stress points in theinter-connected areas of: "Strategic" - scenario conversations, learning journeys, strategy formation, values integration, loyalty anchoring, service leadership; "Operational" - business process improvement, competency development, service measurement, harnessing diversity, response-abilty, training;"Emotional" - workplace motivational environment, culture, transition, learning, creativity. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-02-18 12:26:45 #!/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" |