|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2969 ] | White Pajama |
---|---|
Organisation name | White Pajama |
Short name or acronym | White Pajama |
Organisation type | Company |
Activity type | Call centers |
Address | 24610 Industrial Blvd |
Postal Code | 94545 |
City | Hayward, CA |
Country | United States |
Phone | + (510) 259-2500 |
Fax | + (510) 723-1158 |
info_(on)_whitepajama.com | |
Organisation URL | http://www.whitepajama.com |
Logo | Description |
![]() |
White Pajama is an award-winning CRM contact center solution for organizations, mid-sized outsourcers, and service providers. Because it is delivered via the Internet, customers can have their customer service, help desk, and technical support centers up and running in as few as three days, with no capital outlay. The White Pajama service fully integrates with all of the communication channels people use to reach companieswhether by phone, email, or over the Web. White Pajama unifies customer contacts into one routing, queuing, and tracking system; ensuring customers receive the attention they deserve, regardless of how they choose to communicate. White Pajama makes the set up and ongoing maintenance of contact centers easy, enabling customers to change their parameters when they need to, without waiting for the service provider or incurring additional fees. |
Contact | |
Name | |
Function | |
Department | Sales |
info_(on)_whitepajama.com | |
Phone | + (510) 259-2500 |
Fax | + (510) 723-1158 |
![]() |
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" |