<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ajax Updates &#187; Spam Message</title>
	<atom:link href="http://www.ajaxupdates.com/tag/spam-message/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxupdates.com</link>
	<description>Latest Ajax Scripts, Examples, News and other Ajax related stuff</description>
	<lastBuildDate>Fri, 12 Feb 2010 12:46:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Captcha &#8211; Protect Web Form</title>
		<link>http://www.ajaxupdates.com/captcha-protect-web-form/</link>
		<comments>http://www.ajaxupdates.com/captcha-protect-web-form/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 07:27:43 +0000</pubDate>
		<dc:creator>alyaspk</dc:creator>
				<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Form Processing]]></category>
		<category><![CDATA[Forms / Fields]]></category>
		<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[ajax capta]]></category>
		<category><![CDATA[ajax captha]]></category>
		<category><![CDATA[captha forms]]></category>
		<category><![CDATA[Code 3]]></category>
		<category><![CDATA[Feedback Forms]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[Gateway Installation]]></category>
		<category><![CDATA[Guest Books]]></category>
		<category><![CDATA[Mailboxes]]></category>
		<category><![CDATA[Main Goal]]></category>
		<category><![CDATA[Message Boards]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Search Engine Rankings]]></category>
		<category><![CDATA[Spam Bots]]></category>
		<category><![CDATA[Spam Message]]></category>
		<category><![CDATA[Statistics Show]]></category>
		<category><![CDATA[Urls]]></category>
		<category><![CDATA[webforms]]></category>
		<category><![CDATA[Why Do People]]></category>

		<guid isPermaLink="false">http://www.ajaxupdates.com/?p=1927</guid>
		<description><![CDATA[Why do people spam webforms?
- There are some reasons. The two most important are:




1. Boosting Search Engine rankings
This affects guest books and forums. The main goal of spammers is to obtain links from other resources. So they put messages with their links in your forums and message boards.
2. Spamming feedback forms to deliver advertisements
This is [...]


Related Listings:<ol><li><a href='http://www.ajaxupdates.com/form-wizard-using-jquery-plugin/' rel='bookmark' title='Permanent Link: Form Wizard using Jquery Plugin'>Form Wizard using Jquery Plugin</a> <small> The form wizard plugin is a plugin based on...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span>Why do people spam webforms?<br />
- There are some reasons. The two most important are:</p>
<p></span></p>
<table border="0" cellspacing="0" cellpadding="0" width="80%" align="center">
<tbody>
<tr>
<td><span>1. Boosting Search Engine rankings</span><br />
This affects guest books and forums. The main goal of spammers is to obtain links from other resources. So they put messages with their links in your forums and message boards.<br />
<span>2. Spamming feedback forms to deliver advertisements</span><br />
This is the same method as spamming mailboxes. Spammers just deliver their advertisements to you using the feedback forms you provide them on your site.</td>
</tr>
</tbody>
</table>
<p><span><br />
<span>Why does our solution protect from spam?</span><br />
        Spam is not delivered manually. There are many so-called spam robots (bots) which are spidering the web in order to find the form. Whenever such robots find the web form it tries to post a spam message to it. The only solution to protect your form is to add a verification image.</p>
<p>        This method will not protect you from spammers that are delivering their spam manually, but it will stop all the spam bots. Statistics show that spam delivered manually is less than 0.01% of all web form spam.</p>
<p><strong>How to:</strong><br />
1. Create account on http://www.protectwebform.com/.<br />
To do this, just go to the registration page: signup and fill in all the fields. The new password will be sent to the email address which you provide.</p>
<p>2. Login to the http://www.protectwebform.com/ with the login name you provided and your new password. Go to the page My Verification Urls and click on the button &#8220;generate&#8221;. You will see two urls, which will be used to show the image and to verify the code.</p>
<p>3. Click on the link &#8216;Install&#8217;, choose type of installation and follow a few short instructions on that page to install the protection scripts.</p>
<p>   1. Update you html file as described on the installation page.<br />
   2. (If required) update you code file as described on the installation page.</p>
<p>Take our visual tour on gateway installation: Visual Tour<br />
* You may choose other types of installation. This is the easiest one.</p>
<p>4. If you want to better integrate the verification process into your site, you should know just two things:</p>
<p>   1. The first url is an url of the verification image<br />
   2. The second url is an url which verifies the code, that was provided while filling in the form. Replace the string &#8216;__ver_string__&#8217; in that url to the code that the user has provided to you. When quering this url you will get an xml answer saying whether registration was successful.</p>
<p>XML DTD:</p>
<pre class="brush: html">&lt; !ELEMENT authorization EMPTY &gt;
&lt; !ATTLIST authorization status NMTOKEN #REQUIRED &gt;
&lt; !ELEMENT protectwebform ( verification, authorization ) &gt;
&lt; !ELEMENT verification EMPTY &gt;
&lt; !ATTLIST verification result NMTOKEN #REQUIRED &gt;</pre>
<p>XML Example:</p>
<pre class="brush: xml">&lt; ?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;protectwebform&gt;
&lt;verification result=&quot;yes&quot;&gt;&lt;/verification&gt;
&lt;authorization status=&quot;1&quot;&gt;&lt;/authorization&gt;
&lt;/protectwebform&gt;</pre>
<p>Demo: <a href="http://www.protectwebform.com/imagetypes">http://www.protectwebform.com/imagetypes</a></p>
<p>Source: <a href="http://www.protectwebform.com/howprotect">http://www.protectwebform.com/howprotect</a></p>
<p></span></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fwww.ajaxupdates.com%2Fcaptcha-protect-web-form%2F', 'Captcha+%26%238211%3B+Protect+Web+Form')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fwww.ajaxupdates.com%2Fcaptcha-protect-web-form%2F', title: '+Captcha+%26%238211%3B+Protect+Web+Form+' })"/></div>

<p>Related Listings:<ol><li><a href='http://www.ajaxupdates.com/form-wizard-using-jquery-plugin/' rel='bookmark' title='Permanent Link: Form Wizard using Jquery Plugin'>Form Wizard using Jquery Plugin</a> <small> The form wizard plugin is a plugin based on...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ajaxupdates.com/captcha-protect-web-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->