|
|
|
Organisation profile: HYPERMEDIA SOLUTIONS
| [ ID = 4789 ] | HYPERMS |
| Organisation name | HYPERMEDIA SOLUTIONS |
| Short name or acronym | HYPERMS |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | 2B PROF. BERGMAN STREET, RABIN SCIENCE PARK |
| Postal Code | 76705 |
| City | REHOVOT |
| Country | Israel |
| Phone | +972 774445000 |
| Fax | +972 89363066 |
| Email | SALES_(on)_HYPERMS.COM |
| Organisation URL | http://WWW.HYPERMS.COM |
| Logo | Description |
 |
Hypermedia's add-on communication products bring cost-savings and
efficiency to organizations. Seamlessly integrated with existing PBX / IP-PBX
phone systems, our innovative products enhance business communications and
optimize business processes, plus are easily expanded to meet evolving
corporate telephony needs.
Dual Cost Savings LCR and Bulk SMS managed at the same Hypermedia Gateway
Platform.
Without changing the telephony infrastructure, our voice products create ways
to upgrade current telecommunication systems while leveraging existing telecom
investment
|
|
| Contact |
| Name | Gil Feldberg |
| Function | VP SALES & BUSINESS DEVELOPMENT |
| Department | SALES |
| Email | GIL_(on)_HYPERMS.COM |
| Phone | +972 774445010 |
| Fax | +972 89363066 |
Update this profile
|
Last update: 2016-01-10 10:00:57
#!/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"
|
|