|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4304 ] | Commprise |
---|---|
Organisation name | Commprise |
Short name or acronym | Commprise |
Organisation type | Other |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 750 Main St Ste 608 |
Postal Code | 06103 |
City | Hartford |
Country | United States |
Phone | +1 800-922-6603 |
Fax | + |
info_(on)_commprise.com | |
Organisation URL | http://www.commprise.com |
Logo | Description |
![]() |
Commprise is a fully US based and staffed provider of high quality outsourced contact center services. We offer inbound and outbound answering services, customer service, sales, order processing, technical support and help desk services. We offer all of our services across four methods of contact and communication. These are call center services, email support services, live chat support services and social media management. |
Contact | |
Name | |
Function | |
Department | |
info_(on)_commprise.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2010-08-31 17:38:20 #!/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" |