|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3479 ] | Serviphony |
---|---|
Organisation name | Serviphony |
Short name or acronym | Serviphony |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 5 Labourdonais Street |
Postal Code | 00000 |
City | Port Louis |
Country | Mauritius |
Phone | +33 618 44 36 06 |
Fax | +33 177 45 20 19 |
contact_(on)_serviphony.com | |
Organisation URL | http://www.serviphony.net |
Logo | Description |
![]() |
We are on the market for prospective US/UK clients willing to outsource their Customer Services , Inbound or Outbound activities . We offer the best competitive rates in the marketing globally with lively agents having very neutral accents. me on +230 783 08 53 . I look forward to your reply . |
Member of elsnet | Contact |
Name | Mr Vikrom Jayaraj |
Function | Business Development Executive |
Department | Business Development |
contact_(on)_serviphony.com | |
Phone | +230 783 08 53 |
Fax | + |
![]() |
Last update: 2007-04-22 09:07:48 #!/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" |