|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3128 ] | EasyIVR |
---|---|
Organisation name | EasyIVR |
Short name or acronym | EasyIVR |
Organisation type | Company |
Activity type | Online IVR Service Center |
Address | 1118 East Missouri Avenue |
Postal Code | 85014 |
City | Phoenix, AZ |
Country | United States |
Phone | + +1 602 265 5968 |
Fax | + +1 602 264 6724 |
jpizet_(on)_cox.net | |
Organisation URL | http://www.easyivr.com |
Logo | Description |
![]() |
EasyIVR is the service division of Database Systems Corp. It manages an IVR and Voice Broadcasting Call Center for clients who wish to outsource their phone campaigns. Our center is located in Phoenix, AZ, but we process client programs throughout the country and Canada. Clients range from government organizations to private corporations or small community groups. We are an agentless call center, although both inbound and outbound campaigns are processed. Calls can be transferred to our clients if the called party selects that option through our IVR feature. Clients can manage their own accounts online with complete campaign report options. Features include Text To Speech, database access and update, call recording, call transfers and web access. |
Contact | |
Name | Mr. Paul Gillman |
Function | Director |
Department | Advertising |
pgaz_(on)_yahoo.com | |
Phone | + (602) 265 5968 |
Fax | + (602) 264 6724 |
![]() |
Last update: 2003-02-17 04:48:56 #!/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" |