|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3662 ] | Be connected |
---|---|
Organisation name | Linkcom |
Short name or acronym | Be connected |
Organisation type | Private company |
Activity type | Other expertise relevant for Language or Speech Technology |
Address | 11 rue du Soleil Levant |
Postal Code | 92140 |
City | CLAMART |
Country | France |
Phone | +33 1 40 83 13 13 |
Fax | + |
contacts_(on)_linkcom.net | |
Organisation URL | http://www.linkcom.net |
Logo | Description |
![]() |
French, English, Spanish, German Headsets Distributor/Manufacturer Linkcom's company profil Established : 1996 Headquarters : Clamart, France Commercial Department in France : 10 R&D Department in Eastern Europe : 10 Business type : Manufacturing and distributing Products line : Voice and data telecom solutions to professionals and mass market Target : France / Europe / North Africa / Middle East / West Africa |
Contact | |
Name | M Patrick FRANCOIS |
Function | CEO |
Department | Manufacturing and distributing |
contacts_(on)_linkcom.net | |
Phone | +33 1 40 83 13 13 |
Fax | +33 1 46 31 76 75 |
![]() |
Last update: 2006-07-24 15:22:14 #!/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" |