elsnet |
Organisation profile: Sales Rain BPO |Call Center Seat Leasing |
[ ID = 4540 ] | Sales Rain BPO |
---|---|
Organisation name | Sales Rain BPO |Call Center Seat Leasing |
Short name or acronym | Sales Rain BPO |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 14Fl IBM Plaza Eastwood City Libis |
Postal Code | 1110 |
City | Quezon City |
Country | Philippines |
Phone | +63 29196551 |
Fax | +63 29177512286 |
salesrainph_(on)_gmail.com | |
Organisation URL | http://www.salesrain.com |
Logo | Description |
![]() |
We are a US-incorporated company with highly-experienced and talented management team. Sales Rain helps organizations to reach their objectives by providing high quality outsourcing services globally. We are proud of our ability to use different methods which includes Sales, Lead Generation, Appointment Setting, Collections, Inbound and Outbound call support, Live and Dedicated Virtual Assistants and Call Center Seats Leasing Services. |
Contact | |
Name | SEO Analyst Darcy Williams |
Function | SEO |
Department | Web Development |
sr_(on)_salesrain.com | |
Phone | +63 29196551 |
Fax | + |
![]() |
Last update: 2016-09-26 05:34:56 #!/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" |