<?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>Tech Blog &#187; Wordpress Blog</title>
	<atom:link href="http://www.kensfi.com/tag/wordpress-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kensfi.com</link>
	<description>Home is where you hang your @</description>
	<lastBuildDate>Wed, 25 Aug 2010 23:45:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Exclude folder from htaccess rewrites on WordPress blog</title>
		<link>http://www.kensfi.com/exclude-folder-from-htaccess-rewrites-on-wordpress-blog/</link>
		<comments>http://www.kensfi.com/exclude-folder-from-htaccess-rewrites-on-wordpress-blog/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:20:13 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Exclude folder]]></category>
		<category><![CDATA[htaccess rewrites]]></category>
		<category><![CDATA[Wordpress Blog]]></category>

		<guid isPermaLink="false">http://www.kensfi.com/?p=1862</guid>
		<description><![CDATA[A couple of months ago I tried without success to share some video files on my web domain. I created a new folder, I copied those avi files there but when pointing the browser to that files it gave me that 404 error, page not found. I took me a while to understand that WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months ago I tried without success to share some video files on my web domain. I created a new folder, I copied those avi files there but when pointing the browser to that files it gave me that 404 error, page not found.</p>
<p>I took me a while to understand that WordPress especially is rewriting the .htaccess so you no longer can use any other file, except the files accepted by WordPress on your web domain. This is why so many people are installing WordPress blog on a sub-domain or just in another folder and not directly into the root.</p>
<p>When using a CMS (Content Management System) like ModX or WordPress the problem you&#8217;re facing is that you&#8217;re no longer able to install a second application or to use some sort of files because the rewrites can cause 404 error.</p>
<p>I presented at that time an easy to implement <a href="http://www.kensfi.com/file-type-does-not-meet-security-guidelines-try-another/">solution for excluding of those desired files from .htaccess rewrite on a WordPress blog</a>:</p>
<p>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p>Today I come with a solution for excluding an entire folder from being rewritten in WordPress. The only thing you have to do is adding the following line to the previous block of code:</p>
<p>RewriteCond %{REQUEST_URI} !^/(foldername|foldername/.*)$</p>
<p>To make it work just replace &#8220;foldername&#8221; with your own that needs to be excluded from the rewrite. Here the entire block oh code you have to implement into your .htaccess files:</p>
<p>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_URI} !^/(foldername|foldername/.*)$<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p>Hint: I am using WinSCP for accessing my ftp accounts and modify .htaccess files. It&#8217;s free and is a very good tool. And, by the way in comparison with others I tried is the only one showing me .htaccess files on the server. Tried before with Total Commander (very handy tool, too) but with no success.</p>
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kensfi.com%2Fexclude-folder-from-htaccess-rewrites-on-wordpress-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kensfi.com%2Fexclude-folder-from-htaccess-rewrites-on-wordpress-blog%2F&amp;source=techSpin&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kensfi.com/exclude-folder-from-htaccess-rewrites-on-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Spam protection using cPanel. Forget about Captcha!</title>
		<link>http://www.kensfi.com/spam-protection-using-cpanel-forget-about-captcha/</link>
		<comments>http://www.kensfi.com/spam-protection-using-cpanel-forget-about-captcha/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 10:09:38 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[boxtrapper]]></category>
		<category><![CDATA[e mail address]]></category>
		<category><![CDATA[email address]]></category>
		<category><![CDATA[inbox]]></category>
		<category><![CDATA[mail address field]]></category>
		<category><![CDATA[mail manager]]></category>
		<category><![CDATA[new email]]></category>
		<category><![CDATA[quota]]></category>
		<category><![CDATA[spam trap]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Wordpress Blog]]></category>

		<guid isPermaLink="false">http://www.kensfi.com/?p=1035</guid>
		<description><![CDATA[After I&#8217;ve tried, with no success unfortunately, to use Captcha plugins to protect against spam on my WordPress blogs, I&#8217;ve decided finally to take a look into the cPanel features for spam protection. And indeed there are some nice solutions. I&#8217;ve choose BoxTrapper, a cPanel AddOn which protects your inbox from spam by forcing all [...]]]></description>
			<content:encoded><![CDATA[<p>After I&#8217;ve tried, with no success unfortunately, to use Captcha plugins to protect against spam on my WordPress blogs, I&#8217;ve decided finally to take a look into the cPanel features for spam protection. And indeed there are some nice solutions. </p>
<p>I&#8217;ve choose <strong>BoxTrapper</strong>, a cPanel AddOn which protects your inbox from spam by forcing all people to reply to a verification email before their email will get into your inbox. </p>
<p>Setup:</p>
<p>1. open your <strong>WordPress blog</strong> and go to the <strong>General Settings</strong> page.<br />
2. write into the E-mail address field an address in this format: <strong>whereveryouwant@yourdomainname.xxx</strong> (mine: ken@kensfi.com)</p>
<p><img src="http://www.kensfi.com/wp-content/uploads/2009/10/BoxTrapper1.png" alt="BoxTrapper1" title="BoxTrapper1" width="530" height="353" class="alignnone size-full wp-image-1042" /></p>
<p>3. open <strong>cPanel</strong> pointing your web browser to <strong>www.yourdomainname.xxx/cpanel</strong><br />
4. fill in the username and password (the same you&#8217;re using for FTP)<br />
5. click on <strong>Mail</strong> and then <strong>Add/Remove/Manage Accounts</strong> and click on <strong>Add Account</strong> (bottom of page).</p>
<p><img src="http://www.kensfi.com/wp-content/uploads/2009/10/BoxTrapper2.png" alt="BoxTrapper2" title="BoxTrapper2" width="530" height="353" class="alignnone size-full wp-image-1043" /></p>
<p><img src="http://www.kensfi.com/wp-content/uploads/2009/10/BoxTrapper4.png" alt="BoxTrapper4" title="BoxTrapper4" width="530" height="353" class="alignnone size-full wp-image-1045" /></p>
<p>6. enter the same email you entered at the 2nd step, enter a password and set up the quota (how much space of storage you assign for this email address) &#8211; try to be generous (at least a couple of hundreds of MB).<br />
7. click on <strong>Create</strong>.<br />
8. click on <strong>Go back</strong> (bottom of the page) twice</p>
<p>Now you should be back on <strong>Mail Manager Main Menu</strong>.  </p>
<p>9. click on <strong>BoxTrapper Spam Trap</strong>; there should be listed your new email created. Click on <strong>Manage</strong>.<br />
10. click on <strong>ENABLE</strong> button; you should receive a new message <strong>&#8220;BoxTrapper has been enabled on the account whereveryouwant@yourdomainname.xxx&#8221;.</strong><br />
11. press <strong>Go back</strong>; click on configure settings and here modify only the numbers of days you want an unverified message to be kept on the server. I&#8217;ve let it default &#8211; 15 days. Click on <strong>Save</strong> if you have been modified something and again push <strong>Go back</strong>.<br />
12. now you&#8217;re back in <strong>BoxTrapper Configuration</strong> page. Fill free to modify whatever you want but don&#8217;t forget to click on <strong>Edit Forward/White/Black/Ignore Lists</strong> then <strong>Edit Forward list</strong> and write down the email address you want the verified messages to arrive &#8211; is better to use a regular email provider address like gmail or yahoo instead of using the server email, in this case, <strong>whereveryouwant@yourdomainname.xxx</strong>.</p>
<p>Now everything should be up and running. Just to make sure that everything is OK, make a few tests sending emails to <strong>whereveryouwant@yourdomainname.xxx</strong> and see what&#8217;s going on. You should receive back a verification email  which you should replay unchanged. And Bang! The test message will get through to the email address you setup on the 12nd step. On this email address you&#8217;ll receive all the comments from your blog.</p>
<p>To review in a few words, <strong>BoxTrapper</strong> is forcing every comment we receive (not only on blogs, but regular websites too!) to be verified by the people who&#8217;s sending it by replaying it, a simple condition to verify if a comment is coming from a bot or from a person. Smart eh? :)</p>
<p>What I think about <strong>BoxTrapper</strong>? FORGET ABOUT WORDPRESS CAPTCHA! :)</p>
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kensfi.com%2Fspam-protection-using-cpanel-forget-about-captcha%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kensfi.com%2Fspam-protection-using-cpanel-forget-about-captcha%2F&amp;source=techSpin&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kensfi.com/spam-protection-using-cpanel-forget-about-captcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
