|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0331 ] | Ms. Roberta J. Fox |
|---|---|
| Name | Fox, Ms. Roberta J. |
| Job Title | President & Senior Partner |
| Organisation | FOX GROUP Telecom Consulting |
| Address | 5022 Herald Road, R. R. #1 |
| Postal Code | L0G 1M0 |
| City | Mount Albert, Ontario |
| Country | Canada |
| Phone | +011 905-473.3369 x 1001 |
| Fax | +011 888.669.3698 |
| Mobile | + |
| roberta.fox_(on)_foxgroup.ca [@ replaced for spam protection] | |
| Organisation URL | http://www.foxgroup.ca |
| Personal URL | |
| Membership | |
| Languages | English |
| Specialism | VoIP Architecture and Design
Unified Communications Architecture and Design Call Center Design Call Center Management Call Center Metrics & Audits Chief Technical Consultant Computer Telephony Integration Customer Care Customer Relationship Management Services Skills Profiling Knowledge Management Project and vendor Management Management Consulting Merger & Acquisition Analysis Call centre Product Development Managing Contact Center Web Enablement Matching of CC-Technology, PC-based and LAN-based Recruitment, screening techniques Technology Implementation Telecommunications Vendor Management & Negotiations Voice of Customer Workforce Management |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2008-08-27 15:49:01 #!/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" |