|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1654 ] | Post |
---|---|
Organisation name | Post cti |
Short name or acronym | Post |
Organisation type | Private company |
Activity type | Other expertise relevant for Language or Speech Technology |
Address | Priority House |
Postal Code | HG1 4DP |
City | Harrogate |
Country | United Kingdom |
Phone | +44 0870 1266633 |
Fax | +44 0870 1266644 |
sales_(on)_postcti.co.uk | |
Organisation URL | http://www.postcti.co.uk |
Logo | Description |
![]() |
Post CTI are the largest value added distributor of Intel Telecommunication products throughout EMEA. We also distribute PIKA, ACULAB, AUDIOCODES, AMTELCO and many others. Post CTI can assist in integration and deployment of solutions. We work closely with the major Telcos as well as dealing with multiple resellers in wide ranging areas form video to mobile right through to call centre enviroments. Post CTI carries a large amount of stock of most items. POST CTI also prides itself on its technical back up which is second to none. |
Contact | |
Name | Mr Phil Yau |
Function | Sales Manager |
Department | Sales |
sales_(on)_postcti.co.uk | |
Phone | + |
Fax | + |
![]() |
Last update: 2006-04-12 13:43:15 #!/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" |