Organisation profile: Pacific Call Center Solutions, Inc.
[ ID = 1704 ] | Pacific Call Center Solutions, Inc. |
Organisation name | Pacific Call Center Solutions, Inc. |
Short name or acronym | Pacific Call Center Solutions, Inc. |
Organisation type | Company |
Activity type | Call centers |
Address | 1164 Bishop Street, Ste. 124-417 |
Postal Code | 96813 |
City | Honolulu |
Country | United States |
Phone | + +1 808 528 1562 |
Fax | + +1 801 469 5647 |
Email | info_(on)_pccsi.com |
Organisation URL | http://www.pccsi.com |
Logo | Description |
 |
PCCSI provides professional consulting services for
companies seeking to build a new call center or improve the
performance of an existing one. We specialize in the design and
implementation of call center HR strategies and best practices, as
well as specialize in technology planning, design and implementation
of solutions ranging from complex telephony systems to CRM software.
Our consultants are veteran project managers with over 15 years of
experience in managing centers and the various technologies that
support them. Our mission is to improve your bottom line while
simultaneously improving the quality of your customer interactions.
|
| Contact |
Name | Mr. Kevin Johnson |
Function | President |
Department | |
Email | kjohnson_(on)_pccsi.com |
Phone | + +1 808 528 1562 |
Fax | + +1 801 469 5647 |
Update this profile
|
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"
|
|