|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4509 ] | Sales Rain |
---|---|
Organisation name | Sales Rain BPO |
Short name or acronym | Sales Rain |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 26th Floor IBM Plaza Eastwood City Libis |
Postal Code | 1110 |
City | Quezon City |
Country | Philippines |
Phone | +1 8585687637 |
Fax | +1 8582207642 |
salesrainph_(on)_gmail.com | |
Organisation URL | http://www.salesrain.com |
Logo | Description |
![]() |
Sales Rain, Inc. is a Sales and Marketing, M&A and private investment International call center; a multinational company with headquarters in Los Angeles and offices in San Diego, California , USA with divisions in South America, India and Philippines. In addition, we either own or hold significant interest in or represent top quality call center organizations worldwide. |
Contact | |
Name | Mr. Rajeev Agarwal |
Function | CEO |
Department | Administrative |
info_(on)_salesrain.com | |
Phone | +1 8585687637 |
Fax | +1 8582207642 |
![]() |
Last update: 2012-10-03 07:58: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" |