Organisation profile: Inova Solutions, Inc.
[ ID = 0687 ] | Inova Solutions |
Organisation name | Inova Solutions, Inc. |
Short name or acronym | Inova Solutions |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 110 Avon Street |
Postal Code | 22902 |
City | Charlottesville, VA |
Country | United States |
Phone | +1 434 817 8000 |
Fax | +1 434 817 8002 |
Email | info_(on)_inovasolutions.com |
Organisation URL | http://www.inovasolutions.com |
Logo | Description |
 |
Inova Solutions is a global provider of real-time reporting tools that help companies more quickly and effectively respond to dynamic call center conditionscontributing to better customer service and a healthier bottom line.
We offer a suite of performance optimization products that includes web-based call center performance dashboards, data rich digital signage, agent desktop clients and traditional LED readerboards.
|
| Contact |
Name | Marketing Director Matt Schwabel |
Function | |
Department | Marketing |
Email | mschwabel_(on)_inovasolutions.com |
Phone | +1 434 817 8000 |
Fax | + |
Update this profile
|
Last update: 2007-03-21 14:49:00
#!/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"
|
|