|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2532 ] | Ms Jessica Daoodi |
---|---|
Name | Daoodi, Ms Jessica |
Job Title | Director of Inbound Customer Care/ Director of Operations |
Organisation | Phone Ware Inc |
Address | P.o. box 20123 |
Postal Code | 92021 |
City | El Cajon |
Country | United States |
Phone | + 6193688050 |
Fax | + 6192191853 |
Mobile | + 6193688050 |
jessicadaoodi_(on)_gmail.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | Paigebaby1 |
Languages | English |
Specialism | 24/7 support
Automated Call Overflow Bilingual Speech Production/Perception Billing Support Systems 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 Channel Management |
Photograph | Description or CV |
| |
Update your profile | Last update: 2016-11-03 07:39:45 #!/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" |