|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0277 ] | Primus UK Ltd |
---|---|
Organisation name | Primus UK Ltd |
Short name or acronym | Primus UK Ltd |
Organisation type | Company |
Activity type | Call centers |
Address | Regus House 268 Bath Road |
Postal Code | SL1 4DX |
City | Slough, Berks |
Country | United Kingdom |
Phone | + +44 1753 708634 |
Fax | + +44 1753 708856 |
akennedy_(on)_primus.com | |
Organisation URL | http://www.primus.com |
Logo | Description |
Primus SolutionSeries family of problem resolution and knowledge management software is designed to help companies harness the power of the Internet to solve problems and exchange information more effectively. Customer service, technical support, help desk and other organisations that need to capture, share and manage knowledge worldwide use Primus products to build a knowledgebase of up-to-the-minute solutions that can be easily accessed to answer questions or solve problems on the spot. | |
Contact | |
Name | Ms. Yvette Mendy |
Function | Marketing Manager Europe |
Department | |
Phone | + |
Fax | + |
Update this profile | Last update: 2002-04-10 12:32:58 #!/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" |