|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3912 ] | corelynx |
---|---|
Organisation name | Corelynx Inc |
Short name or acronym | corelynx |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 39899 Balentine Drive, Suite 200 |
Postal Code | 94560 |
City | Newark |
Country | United States |
Phone | +877 267 3599 |
Fax | +510 742 5417 |
info_(on)_corelynx.com | |
Organisation URL | http://www.corelynx.com/ |
Logo | Description |
![]() |
We are offering TDMOIP based interconnectivity networking for Call Centers for high Speech and Voice quality reception and thus helping manage and maintain productivity of Call Centers executive in the most efficient way. For more details please send an email to info@corelynx.com |
Contact | |
Name | CEO Manash Chaudhuri |
Function | Management |
Department | IP Telephony |
info_(on)_corelynx.com | |
Phone | +877 267 3599 |
Fax | +510 742 5417 |
![]() |
Last update: 2008-10-10 20:43:19 #!/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" |