|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3723 ] | CCDS |
---|---|
Organisation name | Call Center Development Services (CCDS) |
Short name or acronym | CCDS |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 5601 Pare, Suite 210 |
Postal Code | H4P 1P7 |
City | Montreal |
Country | Canada |
Phone | +1 514-731-5046 |
Fax | + |
legs_(on)_ccds.ca | |
Organisation URL | http://www.ccds.ca |
Logo | Description |
![]() |
CCDS is a predictive dialer software and service provider. Centcom is a virtual call center service that allows organizations of all sizes to implement predictive dialing without any upfront investments. |
Contact | |
Name | Webmaster Martin Legs |
Function | Web development |
Department | Marketing |
legs_(on)_ccds.ca | |
Phone | +1 514-731-5046 |
Fax | + |
![]() |
Last update: 2006-12-04 17:38:54 #!/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" |