|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3893 ] | Cogent |
---|---|
Organisation name | Cogent E Services Pvt. Ltd. |
Short name or acronym | Cogent |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | C - 100 Sector 63 |
Postal Code | 201306 |
City | Noida |
Country | India |
Phone | +91 120 435 6517 |
Fax | +91 120 426 4329 |
bpo_(on)_cogenteservices.com | |
Organisation URL | http://www.cogenteservices.com |
Logo | Description |
![]() |
BPO company offering services to banking, insurance, telecommunication, healthcare and legal industries. For last four years Cogent E-Services Private Limited has proven itself in the International BPO arena as a company providing a wide range of outsourcing services to the Banking & Finance Sector. |
Contact | |
Name | Mr. Business Development |
Function | Marketing |
Department | IT |
aashish_(on)_bloggerforce.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2008-08-05 07:07:24 #!/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" |