|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3484 ] | Velink |
---|---|
Organisation name | Velink Inc |
Short name or acronym | Velink |
Organisation type | Private company |
Activity type | Other expertise relevant for Lang+Speech Technology |
Address | 3060 Royal Blvd South Ste # 225 |
Postal Code | 30328 |
City | Alpharetta |
Country | United States |
Phone | + +1-678-242-0063 |
Fax | + +1-678-242-0059 |
niket_(on)_velink.com | |
Organisation URL | http://www.velink.com |
Logo | Description |
![]() |
Velink Inc. provides professional consulting services for enterprises seeking to build a new call center or improve their existing ones. We provide Co-Location Space, Hosted Dialer Services ,24 * 7 Tech Support and Low cost PSTN Connectivity at the state-of-the-art data center with connectivity to more then 80 Major carriers in USA. |
Contact | |
Name | Head - IT Operations Niket Kothari |
Function | IT |
Department | IT |
niket_(on)_velink.com | |
Phone | + +1-678-242-0063 |
Fax | + +1-678-242-0059 |
![]() |
Last update: 2005-02-01 18:53: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" |