|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3513 ] | EyeBill |
---|---|
Organisation name | EyeBill Interactive Solutions |
Short name or acronym | EyeBill |
Organisation type | Private company |
Activity type | Lang+Speech Technology deployer |
Address | 75, Krum Popov Street |
Postal Code | 1421 |
City | Sofia |
Country | Bulgaria |
Phone | + +359 2 9634302 |
Fax | + +359 2 9634211 |
office_(on)_eyebill.net | |
Organisation URL | http://www.eyebill.net |
Logo | Description |
![]() |
EyeBill Interactive Solutions Plc is a software company, specialized in delivering VoIP billing and customer care solutions for large, medium-sized and start-up VoIP operators. Established in 2000 as a joint venture, EyeBill has expanded to cover all VoIP business models Corporate, Residential, Prepaid, Postpaid, Calling Cards, Call Shop and Wholesale. |
Contact | |
Name | Mrs Sabina Savova |
Function | Marketing Specialist |
Department | Marketing |
sabina.savova_(on)_eyebill.net | |
Phone | + +359 2 917 9574 |
Fax | + +359 2 9634211 |
![]() |
Last update: 2005-04-05 16:35:59 #!/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" |