|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4618 ] | Apollo blake |
|---|---|
| Organisation name | Apollo Solutions Ltd |
| Short name or acronym | Apollo blake |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | Hi Tech Centre, Coastal Road, Pointe aux Sables |
| Postal Code | |
| City | Port Louis |
| Country | Mauritius |
| Phone | +230 239 8700 |
| Fax | +230 239 8701 |
| sales_(on)_apolloblake.com | |
| Organisation URL | http://www.apolloblake.com/ |
| Logo | Description |
![]() |
Provides cost effective, quality Outsourcing Solutions for organizations around the globe. Our Outsourcing Solutions include both voice and non-voice and extend to Customer Service, Legal Process Outsourcing, Help Desk and Data Entry. At each and every stage of your Customer Life-cycle, we cater to your customers' needs via their preferred communication Channel. Bilingual workforce (English/French) with proactive knowledge of your Industry at the core of our business. Serving your customers across a powerful platform that supports both MultiChannel and Cross Channel Communication. Apollo blake is ready to answer your immediate Customer Service and Industry needs. Not tomorrow, Today. |
| Contact | |
| Name | your title your first name your last name |
| Function | your function |
| Department | your department |
| sales_(on)_apolloblake.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2014-03-27 07:53:06 #!/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" |