|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4488 ] | inConcert |
---|---|
Organisation name | inConcert |
Short name or acronym | inConcert |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 1221 Brickell Ave |
Postal Code | 33131 |
City | Miami |
Country | United States |
Phone | +1 7864728561 |
Fax | + United States |
contact_(on)_inconcertcc.com | |
Organisation URL | http://www.inconcertcc.com |
Logo | Description |
![]() |
We develop powerful, state-of-the-art Contact Center Technology and implement premise-based and hosted solutions for corporations and service providers,in five continents |
Contact | |
Name | Coordinator Teresa Zaffaroni |
Function | New Business Coordinator |
Department | |
tzaffaroni_(on)_inconcertcc.com | |
Phone | + 1 9547017910 |
Fax | + United States |
![]() |
Last update: 2012-07-03 21:49:56 #!/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" |