|
|
Organisation profile: Corelynx Inc
[ ID = 3913 ] | 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 2673599 |
Fax | +510 7425417 |
Email | info_(on)_corelynx.com |
Organisation URL | http://www.corelynx.com/ |
Logo | Description |
 |
Corelynx offers TDM quality VOIP networking solutions to help enhance the
productivity and quality of Voice and Speech enabled call center specific
solutions. For more information please visit us at www.corelynx.com
|
Member of elsnet
| Contact |
Name | Mr Manash Chaudhuri |
Function | Technology Evangelist |
Department | IP Telephony and Unified Communications |
Email | info_(on)_corelynx.com |
Phone | +877 2673599 |
Fax | +510 7425417 |
Update this profile
|
Last update: 2008-10-10 21:03:40
#!/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"
|
|