|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1908 ] | Comtree Client Communication Center |
|---|---|
| Organisation name | Comtree Client Communication Center |
| Short name or acronym | Comtree Client Communication Center |
| Organisation type | Company |
| Activity type | Call center |
| Address | Nieuw Eijckholt 292U |
| Postal Code | 6419 DJ |
| City | Heerlen |
| Country | Netherlands |
| Phone | + +31 45 5600035 |
| Fax | + +31 45 5743812 |
| info_(on)_comtree.nl | |
| Organisation URL | http://www.comtree.nl |
| Logo | Description |
![]() |
All round contact center for phone, fax, e-mail, web and fulfillment services |
| Contact | |
| Name | H. Roukens |
| Function | CEO |
| Department | |
| info_(on)_comtree.nl | |
| Phone | + +31 45 5600035 |
| Fax | + +31 45 5743812 |
|
|
Last update: 2002-07-12 08:39:46 #!/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" |