|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4712 ] | AgileDial |
---|---|
Organisation name | AgileDial |
Short name or acronym | AgileDial |
Organisation type | Private company |
Activity type | Other Language or Speech Technology expertise |
Address | 145-157 St John Street, EC1V 4PW, London, England |
Postal Code | EC1V 4PW |
City | London |
Country | United Kingdom |
Phone | +44 2037348345 |
Fax | + |
marketing_(on)_agiledial.com | |
Organisation URL | http://www.agiledial.com |
Logo | Description |
![]() |
Engage Your Customers Use text and phone call reminders to develop customer relationships and alert them to new opportunities. Save valuable time Easily send personalized messages to all of your prospects and customers in minutes, not hours. Increase Revenue Activate lead lists, track advertising performance, and shorten collection cycles. Features: Text Messages Call Tracking Voice Broadcast Outbound IVR Cloud Call-Center API |
Contact | |
Name | your title John Maisner |
Function | Administrative Manager |
Department | Administrative |
marketing_(on)_agiledial.com | |
Phone | +44 2037348345 |
Fax | + |
![]() |
Last update: 2014-12-29 13:39:40 #!/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" |