|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1067 ] | EPOS Corporation |
---|---|
Organisation name | EPOS Corporation |
Short name or acronym | EPOS Corporation |
Organisation type | Company |
Activity type | Speech technology |
Address | 177 Technology Parkway |
Postal Code | 36830 |
City | Auburn, AL |
Country | United States |
Phone | + +1 334 321 3767 |
Fax | + +1 334 321 7285 |
info_(on)_epos.com | |
Organisation URL | http://www.epos.com |
Logo | Description |
![]() |
EPOS Corporation, with headquarters in Auburn, Alabama, is a leading provider of automated self-service solutions that facilitate communications via phone, Internet, wireless and PDA devices, and kiosk. EPOS primary solutions include interactive voice response and call center automation. The companys products and services empower organizations to build stronger relationships and deliver information through quality interactions with customers and employees. EPOS provides 24/7 anytime, anywhere access to information with the choice of a customer-premise solution or an off-premise Application Service Provider (ASP) solution. |
Contact | |
Name | Mr. Mark Lindsey |
Function | Vice President |
Department | Sales & Marketing |
info_(on)_epos.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-15 17:35:55 #!/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" |