|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3449 ] | medmaSupport |
---|---|
Organisation name | Media Masters |
Short name or acronym | medmaSupport |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | hazratganj |
Postal Code | 226001 |
City | lucknow |
Country | India |
Phone | + 91-522-2204005 |
Fax | + 91-522-2204006 |
tripti_mm2004_(on)_yahoo.co.in | |
Organisation URL | http://www.medma.net/support |
Logo | Description |
![]() |
medmaSupport is a venture of Media Masters, India for providing admin support, Help Desk, site maintenance & customer support services to its esteemed clients. We place great emphasis on individual customer's requirement and give them quality services. Our aim is to achieve total customer satisfaction by superceding the customer's expectation. |
Contact | |
Name | customers support, help desk, admin support, call center media masters |
Function | management |
Department | call center |
tripti_mm2004_(on)_yahoo.co.in | |
Phone | + 91-522-2204005 |
Fax | + 91-522-2204006 |
![]() |
Last update: 2004-11-01 08:03:31 #!/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" |