|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4541 ] | SalesRainVAs |
---|---|
Organisation name | Sales Rain Virtual Assistants | Philippines |
Short name or acronym | SalesRainVAs |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 26/F IBM Plaza Eastwood City Libis |
Postal Code | 1110 |
City | Quezon City |
Country | Philippines |
Phone | +1 858-568-7637 |
Fax | +1 858-880-9233 |
salesrainvas_(on)_gmail.com | |
Organisation URL | http://www.salesrainvas.com |
Logo | Description |
![]() |
We have been in outsourcing business for more than 8 years now and have wide variety of experience working with different horizontals and verticals of business. We know the Philippines market and Filipino workforce better than anyone else. We guarantee the best of workforce and technology to provide you time grow your business rather than wasting time on non-productive work. |
Contact | |
Name | SEO Analyst SR Payba |
Function | SEO |
Department | Web Development |
sr_(on)_salesrain.com | |
Phone | +63 29196551 |
Fax | + |
![]() |
Last update: 2013-03-04 03:53:13 #!/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" |