|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2806 ] | Sympalog |
|---|---|
| Organisation name | Sympalog Voice Solutions GmbH |
| Short name or acronym | Sympalog |
| Organisation type | Company |
| Activity type | Speech technology and solutions |
| Address | Karl-Zucker-Str.10 |
| Postal Code | |
| City | 91052 Erlangen |
| Country | Germany |
| Phone | + +49 9131 61661 0 |
| Fax | + +49 9131 61661 20 |
| info_(on)_sympalog.de | |
| Organisation URL | http://www.sympalog.com |
| Logo | Description |
![]() |
Sympalog offers premium level solutions for voice controlled services by phone: voice portals, first level support, call center automation as well as information and transaction systems. |
| Contact | |
| Name | Dr. Florian Gallwitz |
| Function | Head of R&D |
| Department | |
| gallwitz_(on)_sympalog.com | |
| Phone | + +49 9131 61661 - 0 |
| Fax | + +49 9131 61661-20 |
|
|
Last update: 2003-07-22 15:40:50 #!/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" |