|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4249 ] | Mainstay CRM |
---|---|
Organisation name | Mainstay Offshore Solutions |
Short name or acronym | Mainstay CRM |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | BTM Stage 1 |
Postal Code | 680 068 |
City | Bangalore |
Country | India |
Phone | +91 9945576853 |
Fax | + |
bipin_(on)_mainstaycrm.com | |
Organisation URL | http://www.mainstaycrm.com |
Logo | Description |
![]() |
Award winning center providing services in English to UK, USA and Australian clients. Quality & Delivery are the essential parameters for our business. Voice based services are 80% of our current business. Our presence in BPO space is growing. |
Contact | |
Name | President Bipin Khimasia |
Function | |
Department | |
bipin_(on)_mainstaycrm.com | |
Phone | +91 9945576853 |
Fax | + |
![]() |
Last update: 2010-03-26 09:48:27 #!/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" |