|
|
Organisation profile: Eastvantage
[ ID = 4777 ] | Eastvantage |
Organisation name | Eastvantage |
Short name or acronym | Eastvantage |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 15th floor, Fort Legend Tower 3rd Avenue cor. 31st Street Bonifacio Global City, |
Postal Code | 1634 |
City | Taguig |
Country | Philippines |
Phone | +63 24917378 |
Fax | + |
Email | comment_(on)_eastvantage.com |
Organisation URL | http://www.eastvantage.com/ |
Logo | Description |
|
A European outsourcing company in Asia and consultancy firm providing
web-enabled, personalised business solutions to companies in over 20 cities
around the globe. Our tailor-made outsourcing solutions are always delivered
with passion and excellence by talented professionals who are chosen and
trained to execute projects to the highest standard.
|
| Contact |
Name | Ms. Tina Vargas |
Function | Reputation Manager |
Department | Marketing |
Email | comment_(on)_eastvantage.com |
Phone | +63 24917378 |
Fax | + |
Update this profile
|
Last update: 2017-01-10 05:19:47
#!/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"
|
|