[ ID = 3013 ] | Connectel |
Organisation name | Connectel |
Short name or acronym | Connectel |
Organisation type | Company |
Activity type | Call Centre |
Address | 1155 Lola Street, Suite 100 |
Postal Code | K1K 4C1 |
City | Ottawa, ON |
Country | Canada |
Phone | + +1 613 842 4159 |
Fax | + +1 613 842 4150 |
Email | info_(on)_connectel.comom |
Organisation URL | http://www.connectel.com |
Logo | Description |
 |
CONNECTEL Communications is North America's premier outsourced call center offering telemarketing & customer support services to organizations throughout North America. Our focus and experience with business to business tele-services plus web based customer service and support uniquely qualifies us to develop tailored programs that deliver bottom line results.
|
| Contact |
Name | Managing Director Martin Johnson |
Function | |
Department | |
Email | info_(on)_connectel.comom |
Phone | + 613.842.4159 x 101 |
Fax | + 613.842.4150 |
Update this profile
|
Last update: 2002-04-15 17:14:23
#!/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"
|