|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4670 ] | BPO services |
---|---|
Organisation name | Go4customer |
Short name or acronym | BPO services |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Cyber Futuristic India Pvt Ltd SDF Block G-13/14 |
Postal Code | Noida Special Economic Zone (NSEZ) |
City | Phase II, Noida |
Country | India |
Phone | +1 888-795-2770 |
Fax | +91 120-6667766 |
sales_(on)_cyfuture.com | |
Organisation URL | http://www.go4customer.com/ |
Logo | Description |
![]() |
Go4customer offering both inbound and outbound call center services, which can provide impetus to organizations in improving customer service delivery capability. They are reputed call center in India, facilitates the process of outsourcing by allowing companies to leverage its benefit with regard to customer support, sales, revenue and profit. |
Contact | |
Name | Call Center Marketing Team Aina Malik |
Function | SEO |
Department | Interner Marketing |
ainamalik2013_(on)_gmail.com | |
Phone | +1 800-212-2022 |
Fax | +91 120-6667766 |
![]() |
Last update: 2014-07-28 10:31:12 #!/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" |