|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2262 ] | Mr Jamie Tilly |
---|---|
Name | Tilly, Mr Jamie |
Job Title | Contact Centre, Customer Management, CRM, Call Centre, Planning |
Organisation | London Interim Managers |
Address | 1 Priory Close |
Postal Code | N3 1BB |
City | London |
Country | United Kingdom |
Phone | +44 (0) 7957 642 258 |
Fax | + |
Mobile | +44 (0) 7957 642 258 |
jtilly_(on)_londonim.co.uk [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | 24/7 support
Branding Phone Interactions Call Avoidance Technology Call Center Automation Call Center Management Call Center Metrics Call Center Predictive Dialing Platforms Call center simulation Call Center Telephone Switching Callcenter Tuning CC-Audit Channel Management Computer Telephony Integration Consulting for Services Sales and Marketing Contact Center Builds Contact Center Optimisation Contact Center Strategy Contact Centre Management Control Systems Cost Management Control CTI (selection and application design) Customer Care Customer Care Process Customer Relationship Management Services Customer Satisfaction in the Call Center Cutting Edge Customer Service Development and Implementation of Speech Technology Applications Dynamic modeling e-Business e-Support e-Support Knowledge Centers Evaluation Information Services by Telephone using Speech Technologies Innovation Management Interactive Voice Response (IVR) Interim Management Internet Internet Enabled Support Knowledge Management Management Consulting Managing Contact Center Web Enablement Market Intelligence Market Research Matching of CC-Technology, Monitoring and Coaching Multi-medium Customer Relationship solutions Process Documentation Process Facilitation and Re-engineering Project Management Recruitment Service Design Service Level Agreements (SLAs) Service selling Services Marketing and Sales (inside and outside) Strategic Planning Technology Implementation Telecommunications Telemarketing Telephony Vendor Management Workforce Management |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2012-03-05 08:53:10 #!/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" |