[ ID = 3782 ] | softigator |
Organisation name | Call Center Management Software Directory softigator |
Short name or acronym | softigator |
Organisation type | Association, SIG, Project |
Activity type | Other Call Center related expertise |
Address | Jens Moeller Consulting Ltd., 41 St Gerards Close |
Postal Code | SW4 9DU |
City | London |
Country | United Kingdom |
Phone | +44 2086736968 |
Fax | +44 2086736968 |
Email | info_(on)_jmoellerconsulting.com |
Organisation URL | http://www.softigator.com |
Logo | Description |
 |
softigator is a Call Center Management Software Directory and provides information to Call Centre decision makers on how to cut Call Center costs and how to improve Call Center performance. Segments of Call Center Management systems include IVR software, Workforce Management software, Predictive Dialer, Call Center CRM software and Customer Interaction Management. Speech Technology and Interactive Voice Response for Call Center Management are a main category for both provider lists and dicussed news topics. Softigator is a project operated by Jens Moeller Consulting Ltd., London, www.jmoellerconsulting.com
|
| Contact |
Name | Mr Jens Moeller |
Function | Call Center Consultant |
Department | |
Email | info_(on)_jmoellerconsulting.com |
Phone | +44 2086736968 |
Fax | +44 2086736968 |
Update this profile
|
Last update: 2007-06-16 17:15:21
#!/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"
|