|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2551 ] | EasyRun |
---|---|
Organisation name | EasyRun |
Short name or acronym | EasyRun |
Organisation type | Company |
Activity type | Call centers |
Address | 8 Hasadna St. |
Postal Code | 43651 |
City | Raanana |
Country | Israel |
Phone | + +972 9 7410953 |
Fax | + +972 9 7413802 |
Organisation URL | http:// |
Logo | Description |
![]() |
Two main products: EPICCenter and EPIXCenter. The EPICCenter (EasyRun Professional Intelligent Contact Center) is contact center software that connects to legacy PBXs through CTI connectivity. The product includes a routing module (EPICRouter- rules, skill based, statistical) with a built-in IVR for the automatic interaction with the caller. The EPIXCenter (EasyRun Professional Intelligent Exchange Center) is based on the CTS (Computer Telephony Server) platform. The product includes full PBX functionality in addition to the contact center functionalities of the EPICCenter. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |