|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4841 ] | Portage Communications |
---|---|
Organisation name | Portage Communications, LLC |
Short name or acronym | Portage Communications |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 13827 W. Pine Street |
Postal Code | 83864 |
City | Sandpoint |
Country | United States |
Phone | +1 2082636776 |
Fax | + United States |
info_(on)_portagecommunications.com | |
Organisation URL | http://www.portagecommunications.com |
Logo | Description |
![]() |
Portage Communications specializes in affordable workforce management solutions that are easy to learn and flexible in their use. Call center managers from financial services, catalog sales, customer service centers, help desks, health care, utilities, government institutions and others are using our solutions for maximum productivity. Our call center scheduling software, AgentTime, is designed for small and medium sized call centers as an affordable call center workforce management software alternative. |
Contact | |
Name | Owner Stuart Harris |
Function | President |
Department | |
stu_(on)_portagecommunications.com | |
Phone | +1 208-263-6776 |
Fax | + |
![]() |
Last update: 2016-11-18 00:07:35 #!/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" |