|
|
Organisation profile: DB Streams Inc.
[ ID = 4243 ] | DBS |
Organisation name | DB Streams Inc. |
Short name or acronym | DBS |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 450 Wilson Street |
Postal Code | m6h 1t6 |
City | Toronto |
Country | Canada |
Phone | +1 866-542-0035 |
Fax | + |
Email | dbstreams_(on)_yahoo.ca |
Organisation URL | http://www.dbstreams.ca |
Logo | Description |
 |
A complete solution provider for Call/Contact center industries. Our solutions
include text messaging, IVR, call recording as well as CRM.
|
| Contact |
Name | Director Ted Smith |
Function | Director of Business Development |
Department | Sales & Marketing |
Email | dbstreams_(on)_yahoo.ca |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2010-03-12 21:15:24
#!/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"
|
|