|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2773 ] | Call Centre Association (CCA) |
---|---|
Organisation name | Call Centre Association (CCA) |
Short name or acronym | Call Centre Association (CCA) |
Organisation type | Association |
Activity type | Call centers |
Address | |
Postal Code | |
City | |
Country | Hong Kong |
Phone | + +852 2788 6011 |
Fax | + +852 2788 6056 |
ccainfo_(on)_hkcca.com | |
Organisation URL | http://www.hkcca.com |
Logo | Description |
![]() |
"Background of Call Centre Association" Call Centre Association (CCA) was formed by a group of call centre users in September 1999. The association has a mission to help local organisations in improving their customer service by deploying the best management practices and latest technologies. It aims to promote excellence in three main areas: Process Improvement, People Management and Technology. "Objective" Call Centre Association (CCA) is a non-profit organisation representation the entire on-line customer service and interaction in Hong Kong. We invite all companies and organisations that engage in on-line customer interaction to join the association for promoting the well being of the industry. "Mission" We are committed to improve customer satisfaction by supporting members in continuous quality improvement and productivity growth of customer service and interaction centre operations. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |