Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Dreamweaver MX Dynamic Applications

New Here ,
Feb 19, 2007 Feb 19, 2007
I've set up a feedback form posted on http://www.csudh.edu/oir/Feedback.cfm and unfortunately someone is spamming from various yahoo email accounts with viagra links. How do I stop this?
TOPICS
Server side applications
488
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Feb 19, 2007 Feb 19, 2007
which emails are getting spam the copywrite email or the jbabcock email, or both, or maybe a different one?
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 19, 2007 Feb 19, 2007
Thanks for inquiring. I'm sorry, its not those emails.

What actually is happening is someone is filling out the Feedback form but instead of providing feedback, they are missusing it by adding viagra links.

This spam is coming in everyday. Sure could use some advise how how to stop this.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Feb 19, 2007 Feb 19, 2007
You could implement a CAPTCHA, or write a function to remove any link tags. In ASP there is a Replace function, I don't know about Coldfusion though. The CAPTCHA would be your best bet, because it prevents spam programs from filling out the form, and submitting it hundreds of times.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 19, 2007 Feb 19, 2007
Thanks. I've never heard of CAPTCHA so I just did a search. Once I saw it I recognized having to complete those before. Unfortunately it is not accessible to people with disabilities which is a problem for me since I'm at a university.

I did find one LyleCaptcha which is for coldfusion. Unless there is no other alternative, I'll have to go with that or just let it be.

Thanks again for your help!! It's much appreciated!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007
Just put an input field on your page -

<label for="dayofweek">What is the name of the day that comes between
Tuesday and Thursday:</label>
<input type="text" name="dayofweek" />

And test for "Wednesday".

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"JakeCaique" <webforumsuser@macromedia.com> wrote in message
news:erd1gb$56b$1@forums.macromedia.com...
> Thanks. I've never heard of CAPTCHA so I just did a search. Once I saw it
> I
> recognized having to complete those before. Unfortunately it is not
> accessible
> to people with disabilities which is a problem for me since I'm at a
> university.
>
> I did find one LyleCaptcha which is for coldfusion. Unless there is no
> other
> alternative, I'll have to go with that or just let it be.
>
> Thanks again for your help!! It's much appreciated!
>


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007
Murray *ACE* wrote:
> Just put an input field on your page -
>
> <label for="dayofweek">What is the name of the day that comes between
> Tuesday and Thursday:</label>
> <input type="text" name="dayofweek" />

There needs to be an ID in the input tag. The "for" attribute matches
the ID, not the name:

http://www.w3.org/TR/html4/interact/forms.html#h-17.9.1

Should be:

<label for="dayofweek">What is the name of the day that comes between
Tuesday and Thursday?</label>
<input type="text" name="dayofweek" id="dayofweek" />

--
David Powers, Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007
Sorry - you are right, of course. Thanks for the correction!

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"David Powers" <david@example.com> wrote in message
news:erep7j$5bm$1@forums.macromedia.com...
> Murray *ACE* wrote:
>> Just put an input field on your page -
>>
>> <label for="dayofweek">What is the name of the day that comes between
>> Tuesday and Thursday:</label>
>> <input type="text" name="dayofweek" />
>
> There needs to be an ID in the input tag. The "for" attribute matches the
> ID, not the name:
>
> http://www.w3.org/TR/html4/interact/forms.html#h-17.9.1
>
> Should be:
>
> <label for="dayofweek">What is the name of the day that comes between
> Tuesday and Thursday?</label>
> <input type="text" name="dayofweek" id="dayofweek" />
>
> --
> David Powers, Adobe Community Expert
> Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
> Author, "PHP Solutions" (friends of ED)
> http://foundationphp.com/


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007
Murray *ACE* wrote:
> Sorry - you are right, of course. Thanks for the correction!

NP. Guess who's currently writing a chapter about forms? ;-)

--
David Powers, Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 20, 2007 Feb 20, 2007
LATEST
Me? Wow - it slipped right past.... 8)

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"David Powers" <david@example.com> wrote in message
news:ereqov$6vf$1@forums.macromedia.com...
> Murray *ACE* wrote:
>> Sorry - you are right, of course. Thanks for the correction!
>
> NP. Guess who's currently writing a chapter about forms? ;-)
>
> --
> David Powers, Adobe Community Expert
> Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
> Author, "PHP Solutions" (friends of ED)
> http://foundationphp.com/


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines