|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4669 ] | Firstsource |
|---|---|
| Organisation name | Firstsource Solutions Ltd |
| Short name or acronym | Firstsource |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | Space One, 1 Beadon Road, London W6 0EA |
| Postal Code | W6 0EA |
| City | London |
| Country | United Kingdom |
| Phone | +44 20 8237 4500 |
| Fax | +44 20 8237 4501 |
| marketing_(on)_firstsource.com | |
| Organisation URL | http://www.firstsource.com/ |
| Logo | Description |
![]() |
Firstsource provides innovative, customer-centric Business Process Management (BPM/BPO)solutions to the worlds leading organizations across the Telecommunications & Media, Banking & Financial services, Insurance, Healthcare and Publishing industries. Firstsource is one of the world's leading bpo companies with delivery centers across the globe. |
| Contact | |
| Name | Mr Nitin Namdeo |
| Function | Online Marketing Manager |
| Department | your department |
| onlinemarketing.firstsource_(on)_gmail.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2014-07-23 13:22:07 #!/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" |