|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4820 ] | HoduSoft |
---|---|
Organisation name | HoduSoft |
Short name or acronym | HoduSoft |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 2nd Floor, D Block, Satyam Corporate Square |
Postal Code | 380054 |
City | Ahmedabad |
Country | India |
Phone | +91 9979873290 |
Fax | + |
marketing_(on)_hodusoft.com | |
Organisation URL | http://hodusoft.com/ |
Logo | Description |
![]() |
HoduSoft is one of the rapidly growing companies in India, renowned for providing world class business VoIP solutions to a huge client base. We have expertise in providing reliable, cost-effective and client-centric communication and collaboration solutions. Simple and affordable, our VoIP products make your business communication efficient. |
Contact | |
Name | Leading Business VoIP Solutions Provider Company - Hodusoft Maulik Shah |
Function | Managing Director |
Department | Call Center Software |
adelaklok08_(on)_yahoo.com | |
Phone | +91 9979873290 |
Fax | + |
![]() |
Last update: 2016-08-29 08:29: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" |