[ ID = 4798 ] | LC |
Organisation name | Lingual Consultancy |
Short name or acronym | LC |
Organisation type | Private company |
Activity type | Other Translation or Localisation related expertise |
Address | 9th Floor, JMD Megapolis, Sohna Road, Gurgaon, India |
Postal Code | 122001 |
City | gurgaon |
Country | India |
Phone | +91 91-124-2848100 |
Fax | + |
Email | info_(on)_lingualconsultancy.com |
Organisation URL | http://lingualconsultancy.com/ |
Logo | Description |
 |
Lingual consultancy is one of the leading Translation Companies in India
specializing in more than 200 Language Translation, Software
Internationalization. Our professional native translators deliver native
language translation services in all the major Languages.
|
| Contact |
Name | Lingual Consultancy Lingual Consultancy |
Function | ## your function |
Department | ## your department |
Email | brown_robert121_(on)_rediffmail.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2016-03-09 10:11:22
#!/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"
|