[ ID = 3076 ] | MIT |
Organisation name | MIT Communications Limited |
Short name or acronym | MIT |
Organisation type | Telecommunications Software & Equipment |
Activity type | |
Address | Widford Hall, Widford Hall Lane |
Postal Code | CM2 8TD |
City | Chelmsford |
Country | United Kingdom |
Phone | + 08700 116481 |
Fax | + 08700 116482 |
Email | info_(on)_mit-comms.co.uk |
Organisation URL | http://www.mit-comms.co.uk |
Logo | Description |
 |
MIT Communications design and build applications for the Voice and Data arena. Our products include Call Management (Call Logging), VoiceMail, Call Recording, Hospitality Front-of-house, Billing Validation, Recorded Announcements, Music-on-hold and Web logging.
|
| Contact |
Name | Mr Paul McGuinness |
Function | Technical Director |
Department | Technical |
Email | paulm_(on)_mit-comms.co.uk |
Phone | + 08700 116481 |
Fax | + 08700 116482 |
Update this profile
|
Last update: 2002-07-16 11:46:19
#!/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"
|