|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1705 ] | Multi-Channel Systems |
---|---|
Organisation name | Multi-Channel Systems |
Short name or acronym | Multi-Channel Systems |
Organisation type | Other |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 2226 Arbor Crest Dr. |
Postal Code | 75007 |
City | Carrollton |
Country | United States |
Phone | + 1.888.769.9629 (U.S. only) |
Fax | + 1.972.306.6712 |
sales_(on)_mcsmk8.com | |
Organisation URL | http://www.mcsmk8.com |
Logo | Description |
![]() |
Mark VIII Predictive Dialing System. The Fastest Most Cost Effective Predictive Dialing Systems Avalible! MCS's Main product is the Mark VIII Predictive Dialing System for small to medium companies, but also works with sytems as large a 1024 Ports for enterprise based call centers. |
Contact | |
Name | Mr. Matt Garrett |
Function | Sales/Technical |
Department | Mark VIII Development |
mgarrett_(on)_mcsmk8.com | |
Phone | + 1.888.769.9629 (U.S. only) |
Fax | + 1.972.306.6712 |
![]() |
Last update: 2004-12-08 18:06:03 #!/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" |