|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3887 ] | VoiceGate Corp. |
---|---|
Organisation name | VoiceGate Corp. |
Short name or acronym | VoiceGate Corp. |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 91 Granton Dr. |
Postal Code | L4B 2N5 |
City | Richmond Hill, Ontario |
Country | Canada |
Phone | + 905-747-2266 |
Fax | + 905-747-2209 |
nskalic_(on)_igeacare.com | |
Organisation URL | http://www.voicegate.com/call_logging.htm |
Logo | Description |
![]() |
VoiceGate has over 25 years experience as a provider of voice processing systems. We design, and develop technically superior PC based IVR's, Call Recorders, Speech Recognition, Predictive Dialers and Voice Messaging systems. Targeted at small to mid-sized applications with emphasis on simple installation, ease of use and long-term reliability. |
Contact | |
Name | Channel Account Manager Nick Skalic |
Function | Channel Sales |
Department | |
nskalic_(on)_igeacare.com | |
Phone | + 905-747-2208 |
Fax | + 905747-2209 |
![]() |
Last update: 2008-07-11 20:37:03 #!/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" |