|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3679 ] | IP COMMS |
---|---|
Organisation name | IP COMMUNICATIONS |
Short name or acronym | IP COMMS |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 1925 Vaughn Rd |
Postal Code | 30144 |
City | Marietta |
Country | United States |
Phone | +1 6784601475 |
Fax | + |
Organisation URL | http://www.ipcomm.net |
Logo | Description |
![]() |
About IP Communications IP Communications, LLC, is a VoIP service provider, offering enhanced data communication technologies in emerging global markets. IP Communications provides voice origination and transport services for domestic and international calls and maintains Virtual Private Networks between the USA and global markets for telecom carriers, multi-national organizations as well as next-generation service providers. The company is headquartered in Marietta, GA with satellite sales offices in India and the Caribbean. More information can be found at IP Communication's website, http://www.ipcomms.net |
Contact | |
Name | Aliris Parfenov |
Function | Sales |
Department | Sales Department |
aliris.parfenov_(on)_ipcomm.net | |
Phone | +1 6784601475 |
Fax | + |
![]() |
Last update: 2006-06-26 21:38:17 #!/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" |