<?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>Istanto Blog - Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online. &#187; banned</title>
	<atom:link href="http://www.istanto.net/tag/banned/feed" rel="self" type="application/rss+xml" />
	<link>http://www.istanto.net</link>
	<description>Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online.</description>
	<lastBuildDate>Sun, 08 Jan 2012 02:56:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Playing with .htaccess file</title>
		<link>http://www.istanto.net/playing-with-htaccess-file.html</link>
		<comments>http://www.istanto.net/playing-with-htaccess-file.html#comments</comments>
		<pubDate>Sun, 11 Jan 2009 19:16:54 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[banned]]></category>
		<category><![CDATA[hotlinking]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[referer ban]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=904</guid>
		<description><![CDATA[Crazy! I think all of my site has been targeted to get spammed by someone or maybe group.. Last 2 days ago I give notification in some of my site tell them to stop spamming or I will banned them. Mostly they are spamming for Viagra, xxx, porn, rubbish stuff, etc. Seems like spam business [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Crazy!</strong> I think all of my site has been targeted to get spammed by someone or maybe group.. Last 2 days ago I give notification in some of my site tell them to stop spamming or I will banned them. Mostly they are spamming for Viagra, xxx, porn, rubbish stuff, etc. Seems like spam business make a lot money for them&#8230; eh?</p>
<p style="text-align: justify;">Looks like they was thinking I&#8217;m joke? <span style="text-decoration: line-through;"><strong>hell no</strong></span> I&#8217;m not joke this time *<em>bad temperament lol</em>* I banned all they IP from accessing my website. I don&#8217;t care about traffic may decrease for a weeks this <span style="text-decoration: underline;"><span style="text-decoration: line-through;">stupid guys group</span></span> must be stopped!</p>
<p style="text-align: justify;">I searching the way to do it and i found it lately to play with simple .htaccess file to stop this <em>noob</em> from spamming..</p>
<p style="text-align: justify;"><strong><span style="text-decoration: underline;">blocking their IP using this sample code</span>:</strong></p>
<p style="text-align: justify;">## USER IP BANNING<br />
&lt;Limit GET POST&gt;<br />
order allow,deny<br />
deny from 123.123.123.123<br />
deny from 123.123.123.<br />
deny from 123.123.<br />
deny from 123.<br />
allow from all<br />
&lt;/Limit&gt;</p>
<p style="text-align: justify;"><strong>Read the rules:</strong></p>
<p>123.123.123.123 (Blocks a specific IP address)<br />
123.123.123. (Blocks ALL IPs within the range 123.123.123.xxx)<br />
123.123. (Blocks ALL IPs within the range 123.123.xxx.xxx)<br />
123. (Blocks ALL IPs within the range 123.xxx.xxx.xxx)</p>
<p style="text-align: justify;">I <strong>recommended</strong> you to blocks specific IP adress to minimize your lost traffic.</p>
<p style="text-align: justify;"><strong><span style="text-decoration: underline;">Now for disable hotlinking from bandwith stealer use this sample code:</span></strong></p>
<p><span id="more-904"></span><br />
## DISABLE HOTLINKING<br />
RewriteEngine on<br />
# Options +FollowSymlinks<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourotherdomain.com/.*$ [NC]<br />
RewriteRule \.(gif|jpg|jpeg|png|js|css)$ &#8211; [F]</p>
<p><strong>Read the rules:</strong></p>
<p style="text-align: justify;">yourdomain.com and yourotherdomain.com is allowed site that can show hotlinking files you can use your hosting IP address too.</p>
<p style="text-align: justify;">gif|jpg|jpeg|png|js|css is file (extension) that should be disallowed from hotlinking:</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Banned bad referrer using this sample code:</strong></span></p>
<p style="text-align: justify;">## SITE REFERRER BANNING<br />
RewriteEngine on<br />
# Options +FollowSymlinks</p>
<p>RewriteCond %{HTTP_REFERER} badsite\.com [NC,OR]<br />
RewriteCond %{HTTP_REFERER} badsite\. [NC,OR]<br />
RewriteCond %{HTTP_REFERER} sub\.badsite\.com [NC]<br />
RewriteRule .* &#8211; [F]</p>
<p style="text-align: justify;"><strong>Read the rules:</strong></p>
<p>badsite.com (Blocks traffic coming from badsite.com)<br />
badsite. (Blocks traffic coming from all varieties of badsite.xxx, such as badsite.com, badsite.net etc)<br />
sub.badsite.com(Blocks traffic coming from sub.badsite.com<br />
You can use IP adress too.</p>
<p style="text-align: justify;">That&#8217;s all for today, have a nice day <img src='http://www.istanto.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> <strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/playing-with-htaccess-file.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dont use pay-ads, if you dont want to get banned with google search engine</title>
		<link>http://www.istanto.net/dont-use-pay-ads-if-you-dont-want-to-get-banned-with-google-search-engine.html</link>
		<comments>http://www.istanto.net/dont-use-pay-ads-if-you-dont-want-to-get-banned-with-google-search-engine.html#comments</comments>
		<pubDate>Mon, 21 Jan 2008 10:02:38 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Short Reviews]]></category>
		<category><![CDATA[banned]]></category>
		<category><![CDATA[CPM network]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[pay-ads.com review]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://www.istanto.net/2008/01/21/dont-use-pay-ads-if-you-dont-want-to-get-banned-with-google-search-engine/</guid>
		<description><![CDATA[How many of us hearing and know about pay-ads? pay-ads is CPM networks will pay around $3.50 for 1000 impressions. Beside that high rate CPM there is something bad behind it&#8230;. tested and verified by some friends, pay-ads will cheating you.. first they not record all impressions, secondly they redirect your visitor into bad website, some friend [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">How many of us hearing and know about pay-ads? pay-ads is CPM networks will pay around $3.50 for 1000 impressions. Beside that high rate CPM there is something bad behind it&#8230;. <strong>tested</strong> and <strong>verified</strong> by some friends, pay-ads will cheating you.. first they not record all impressions, secondly they redirect your visitor into <em>bad</em> website, some friend also has clarify pay-ads spreading an virus.</p>
<p align="justify">The <strong>bad bad bad</strong> thing will happen is your website will got banned from google search engine thinking about it how much visitor you will loose if you keep use pay-ads. I&#8217;m not joke I was used them for around 2 month in my forums and when I checked google has banned my url from direct access and give warning to our visitor with words like this:</p>
<p align="justify"><strong>This site may harm your computer.</strong></p>
<p align="justify">Now we all know, google hate pay-ads and if you want to keep your visitor grown stop using pay-ads, still there another CPM network clean and available out there.</p>
<p align="left"><strong>Note: </strong>For every website owner better remove pay-ads now and waiting until google remove the ban.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/dont-use-pay-ads-if-you-dont-want-to-get-banned-with-google-search-engine.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

