|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2508 ] | Mr George Simons |
---|---|
Name | Simons, Mr George |
Job Title | Vice President of Business Development |
Organisation | Global Contact Services (GCS) |
Address | 118 B South Main St. |
Postal Code | 28144 |
City | Salisbu |
Country | United States |
Phone | +011 7046479621 |
Fax | +011 7046479792 |
Mobile | + |
Geoge.Simons_(on)_GCSagents.com [@ replaced for spam protection] | |
Organisation URL | http://www.gcsagents.com |
Personal URL | |
Membership | SOCAP, IAOP, CCNG |
Languages | English |
Specialism | 24/7 support
Automated Call Overflow Branding Phone Interactions Call Center Management Call Center Metrics Callcenter Tuning Channel Management Consulting for Services Sales and Marketing Contact Center Builds Contact Center Optimisation Contact Centre Management Customer Care Customer Care Process Customer Relationship Management Services Customer Satisfaction in the Call Center Management Consulting Matching of CC-Technology, Multimodal Communciation Telemarketing Vendor Management |
Photograph | Description or CV |
http://www.gcsagents.com | |
Update your profile | Last update: 2015-02-04 23:57:22 #!/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" |