|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4873 ] | Callzilla |
|---|---|
| Organisation name | Callzilla |
| Short name or acronym | Callzilla |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 3100 SW 145th Ave |
| Postal Code | 33027 |
| City | Miramar |
| Country | United States |
| Phone | +855 255-9552 |
| Fax | + |
| info_(on)_callzilla.net | |
| Organisation URL | http://www.callzilla.net |
| Logo | Description |
![]() |
Callzilla supplies all the people, processes, and technology an enterprise needs to deliver world class customer care 24x7x365. Use us as your Help Desk; for customer support on billing, returns, and exchanges; to increase account saves, and more. |
| Contact | |
| Name | President Neal Topf |
| Function | Executive |
| Department | Sales, Marketing, Finance, Operations |
| info_(on)_callzilla.net | |
| Phone | +855 255-9552 |
| Fax | + |
|
|
Last update: 2017-04-07 22:49:23 #!/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" |