[ ID = 3896 ] | Professional Translation Services |
Organisation name | Translation Zoom |
Short name or acronym | Professional Translation Services |
Organisation type | Private company |
Activity type | Other Translation or Localisation related expertise |
Address | 1171 Robertson Blvd # 206 |
Postal Code | 90035 |
City | Los Angeles |
Country | United States |
Phone | +866 620.3651 |
Fax | +310 598.5564 |
Email | info_(on)_translationzoom.com |
Organisation URL | http://www.translationzoom.com |
Logo | Description |
 |
Affordable | Fast and Accurate | Pay Us When We Are Done!
Call 866.620.3651
Translations
Localization
Interpretations
Proofreading
|
| Contact |
Name | Admin Stephanie Edwards |
Function | Translations |
Department | Translations |
Email | info_(on)_translationzoom.com |
Phone | +866 620.3651 |
Fax | +310 598.5564 |
Update this profile
|
Last update: 2008-08-08 04:57:35
#!/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"
|