|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3546 ] | Qmac Info Solutions. |
---|---|
Organisation name | Q-MAC Info Solutions Pvt. Ltd. |
Short name or acronym | Qmac Info Solutions. |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | #B-7, Sree Rangam Lane, |
Postal Code | Sasthamangalam P O |
City | Trivandrum |
Country | India |
Phone | +91 9349828827 |
Fax | +91 3093779 |
qmacinfo_(on)_rediffmail.com | |
Organisation URL | http://www.qmacindia.com |
Logo | Description |
![]() |
We are a well experienced call centre in India, with operations in Inbound and Outbound Voice, Chat and Email campaign experience for clients ranging from Microsoft, AOL and many more. our operations territories range from UK, USA, Australia and European Markets. Good talented English skills, High Quality & Value Addition and Low cost are the best reasons Indian call centres are having a demand for nowadays. We have more than 2 years of industry experience as well. |
Contact | |
Name | Sharafas Shamsudeen Sharafas |
Function | |
Department | |
qmacinfo_(on)_rediffmail.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-06-13 10:06:50 #!/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" |