|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0322 ] | TeleSynergy Research Inc. |
---|---|
Organisation name | TeleSynergy Research Inc. |
Short name or acronym | TeleSynergy Research Inc. |
Organisation type | Private company |
Activity type | Lang+Speech Technology provider |
Address | 1259 Oakmead Parkway |
Postal Code | 94085 |
City | Sunnyvale, CA |
Country | United States |
Phone | + +1 408 470 4700 |
Fax | + +1 408 470 4701 |
sales_(on)_telesynergy.com | |
Organisation URL | http://www.telesynergy.com |
Logo | Description |
![]() |
TeleSynergy develops, manufactures and markets a full spectrum of PBX/Voice/Fax boards and application generator that address the total communications needs of the small to medium size business. They provide advanced PC based PBX, auto-attendant and voice mail, IVR, FOD functionality and further integrates them with the internet to provide web-enabled unified messaging function. |
Contact | |
Name | Sales Manager Chris Chang |
Function | |
Department | |
chris_(on)_telesynergy.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-02-14 18:45:05 #!/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" |