|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3869 ] | Infinity |
---|---|
Organisation name | Infinity Informations (P) Ltd |
Short name or acronym | Infinity |
Organisation type | Private company |
Activity type | Other Translation or Localisation related expertise |
Address | A-30 Kailash Colony |
Postal Code | 110048 |
City | New delhi |
Country | India |
Phone | +91 9811112293 |
Fax | + |
sitemanager_(on)_infysolutions.com | |
Organisation URL | http://www.infysolutions.com |
Logo | Description |
![]() |
Infinity has language translation experts who can build content for your web sites in your respective country language. To save you time and effort, Infinity has developed some language converting tools that are highly effective in meaningful information search and data structuring. Our translation experts can provide you with rich, search engine friendly content that can help your sites rank high on the major search engines. |
Contact | |
Name | Director Ritu Rathaur |
Function | Business Development |
Department | Marketiing |
ritu_(on)_infysolutions.com | |
Phone | +91 9811112293 |
Fax | + |
![]() |
Last update: 2008-06-11 15:32:05 #!/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" |