|
|
|
Organisation profile: iPoint-media
| [ ID = 3714 ] | iPoint-media |
| Organisation name | iPoint-media |
| Short name or acronym | iPoint-media |
| Organisation type | Other |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 2a Habarzel Street |
| Postal Code | 69710 |
| City | Tel Aviv |
| Country | Israel |
| Phone | +972 3-765-7364 |
| Fax | +972 3-765-7139 |
| Email | info_(on)_ipoint-media.com |
| Organisation URL | http://www.ipoint-media.com |
| Logo | Description |
 |
iPoint-media develops and markets solutions that enable video call center
solutions over 3G networks. Our solutions are deployed using Multimedia IVR,
which provide 3G users with audiovisual menus to navigate in place of
traditional voice-based IVR.
|
|
| Contact |
| Name | |
| Function | |
| Department | |
| Email | info_(on)_ipoint-media.com |
| Phone | + |
| Fax | + |
Update this profile
|
Last update: 2006-10-18 11:56:43
#!/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"
|
|