|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3435 ] | tarak.org |
|---|---|
| Organisation name | MadPie Solutions |
| Short name or acronym | tarak.org |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Lang+Speech Technology |
| Address | Portland |
| Postal Code | 97233 |
| City | Portland, OR |
| Country | United States |
| Phone | + 0115033121286 |
| Fax | + |
| admin_(on)_tarak.org | |
| Organisation URL | |
| Logo | Description |
![]() |
MadPie Solutions specializes in the installation and integration of ShoreTel VoIP installations with ShoreTel's own Contact Center and the integration of 3rd party contact centers with the ShoreTel product. |
| Contact | |
| Name | TJ ROBB |
| Function | |
| Department | |
| admin_(on)_tarak.org | |
| Phone | + 0115033121286 |
| Fax | + |
|
|
Last update: 2004-10-09 01:40:59 #!/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" |