|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3640 ] | SYNERGOS TECHNOLOGIES |
---|---|
Organisation name | SYNERGOS TECHNOLOGIES |
Short name or acronym | SYNERGOS TECHNOLOGIES |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 25/25 BENAKA ARCADE, 1ST BLOCK, VIDYARANYAPURA |
Postal Code | 560097 |
City | BANGALORE |
Country | India |
Phone | +91 9886365954 |
Fax | +91 8030922465 |
sunil_(on)_synergostechnologies.com | |
Organisation URL | http://www.synergostechnologies.com |
Logo | Description |
![]() |
Synergos Technologies, is an earnest endeavor to provide world class international contact center services. With our resource pool of seasoned and experienced professionals coupled with state of the art technology and industry best practices, it is our vision to make Synergos Technologies a call center that truly recognizes the needs of its clients, and renders the best service in customer interaction. Our emphasis is on creating a client profile worldwide especially from the US, UK, Europe and Australia. With the world eyeing India as the preferred destination to outsource call center services, we want to establish ourselves firmly as a trusted name in service outsourcing. |
Contact | |
Name | Kumar Sunil Kumar |
Function | call center |
Department | call center |
sunil_(on)_synergostechnologies.com | |
Phone | +91 9886365954 |
Fax | +91 8030922465 |
![]() |
Last update: 2006-02-11 06:08:05 #!/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" |