|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1843 ] | Founder Kevin Smith |
---|---|
Name | Smith, Founder Kevin |
Job Title | Founder |
Organisation | Inactu Group LLC |
Address | 826 Mockingbird Trail |
Postal Code | 80421 |
City | Bailey |
Country | United States |
Phone | + 303-838-9484 |
Fax | + |
Mobile | + |
kevin.smith_(on)_inactu.com [@ replaced for spam protection] | |
Organisation URL | http://www.inactu.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | Call Center Automation
Call Center Management Call Center Metrics Call Center Telephone Switching Callcenter Tuning Consulting for Services Sales and Marketing Contact Center Builds Contact Center Optimisation Contact Center Strategy Contact Centre Management Customer Care Customer Care Process Customer Relationship Management Services Customer Satisfaction in the Call Center e-Business e-Support e-Support Knowledge Centers Interactive Voice Response (IVR) Interim Management Internet Internet Enabled Support Knowledge Management Management Consulting Managing Contact Center Web Enablement Project Management Recruitment Service Design Service Level Agreements (SLAs) Service selling Services Marketing and Sales (inside and outside) Technology Technology Implementation Telecommunications Telemarketing Training Training - Value Selling, Negotiating, Pricing, Marketing Workforce Management |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2004-11-28 22:32:34 #!/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" |