|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2482 ] | Director Prakash Ghai |
---|---|
Name | Ghai, Director Prakash |
Job Title | Director |
Organisation | Q 2 Serves Infotech |
Address | 667, udyog vihar, phase -5 |
Postal Code | 122016 |
City | Gurgaon |
Country | India |
Phone | +1 9175039292 |
Fax | + |
Mobile | +91 9650337878 |
prakash_(on)_q2serves.co.uk [@ replaced for spam protection] | |
Organisation URL | http://www.q2serves.co.uk/ |
Personal URL | http://www.inboundcallcentreservices.co.uk/ |
Membership | |
Languages | English |
Specialism | 24x7 call centre support
business process outsourcing Call centre Call centre Services call centre solutions Cold calling Contact centre Inbound Call centre inbound call centre services outbound call centre outbound telemarketing telemarketing telemarketing services telesales |
Photograph | Description or CV |
![]() |
http://www.q2serves.co.uk/ |
![]() |
Last update: 2013-06-24 22:46:47 #!/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" |