[ ID = 1073 ] | PAPLUS |
Organisation name | Predict Ability Plus, Inc. |
Short name or acronym | PAPLUS |
Organisation type | Speech technology |
Activity type | 9 Call center without specific expertise in Lang+Speech |
Address | 100 Laurel Lane |
Postal Code | 01462 |
City | Lunenburg, MA |
Country | United States |
Phone | + +1 978 343 6000 |
Fax | + +1 978 345 9179 |
Email | sales_(on)_paplus.com |
Organisation URL | http://www.paplus.com |
Logo | Description |
|
PAPLUS specializes in high performance enhancement/development /consultancy of contact center business applications for high volume inbound and outbound call management. PAPLUS is primarily known for its Predictive Dialing technology and true usage of computer telephony integration with all of the major PBX manufacturers. Systems are scalable from 4 users to many hundreds of users and only limited to the capacity of any specific PBX/telephone system environment. PAPLUS provides source code access to desktop/database developers for custom inhouse system integration projects.
|
| Contact |
Name | Mr Gary V. Steeves |
Function | CEO/CTO |
Department | |
Email | gsteeves_(on)_paplus.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2004-04-23 23:18:43
#!/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"
|