|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1542 ] | Mr. William M. Moore |
---|---|
Name | Moore, Mr. William M. |
Job Title | President |
Organisation | Communications Managers Association |
Address | 666 Fifth Avenue, #337 |
Postal Code | 10103 |
City | New York, NY |
Country | United States |
Phone | + +1 212 708 9813 |
Fax | + +1 212 333 1141 |
Mobile | + |
president_(on)_cma.org [@ replaced for spam protection] | |
Organisation URL | http://www.cma.org |
Personal URL | |
Membership | |
Languages | English |
Specialism | Call Center Automation
Call Center Management Call Center Metrics Call Center Telephone Switching Communication Computer Telephony Integration Contact Center Strategy Contact Centre Management High speed networks Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Management Consulting Project Management Technology Technology Implementation Telecommunications Telemarketing Telephone Announcement Systems Telephony Text-to-Speech Text-To-Speech Conversion Text-to-Speech in Telephony Training Training - Value Selling, Negotiating, Pricing, Marketing Voice-Driven Telecommunications Applications VoiceXML VoIP |
Photograph | Description or CV |
![]() |
http://www.cma.org |
![]() |
Last update: 2003-02-04 18:01:40 #!/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" |