|
|
Organisation profile: Converso Contact Centres
[ ID = 4793 ] | Converso |
Organisation name | Converso Contact Centres |
Short name or acronym | Converso |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Thamesgate House, 33-41 Victoria Avenue |
Postal Code | SS2 6DF |
City | Southend-on-Sea |
Country | United Kingdom |
Phone | +44 1702 308849 |
Fax | + |
Email | chris_p_(on)_converso.co.uk |
Organisation URL | http://www.converso.co.uk/ |
Logo | Description |
 |
Established in Southend, Essex, in 1997, Converso has grown and developed its
services in line with advancements in technology and has become a leader in
providing outsourced contact centre and BPO services in the UK.
|
| Contact |
Name | Mr. Chris Persson |
Function | Marketing Director |
Department | ## your department |
Email | chris_p_(on)_converso.co.uk |
Phone | +44 786 051 9728 |
Fax | + |
Update this profile
|
Last update: 2016-01-21 07:55:13
#!/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"
|
|