<?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>Notfornoone</title>
	<atom:link href="http://notfornoone.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://notfornoone.com</link>
	<description>Yes, its a double negative</description>
	<lastBuildDate>Sat, 17 Dec 2011 00:03:32 +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>Mute Screamer 1.0.4</title>
		<link>http://notfornoone.com/2011/12/mute-screamer-1-0-4/</link>
		<comments>http://notfornoone.com/2011/12/mute-screamer-1-0-4/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 00:03:32 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Mute Screamer]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=1544</guid>
		<description><![CDATA[Mute Screamer 1.0.4 is out. This release brings some minor improvements and WordPress 3.3 compatibility and also some minor bug fixes. For full details checkout the changelog.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/mute-screamer/">Mute Screamer</a> 1.0.4 is out. This release brings some minor improvements and <a href="http://wordpress.org/news/2011/12/sonny/">WordPress 3.3</a> compatibility and also some minor bug fixes. For full details checkout the <a href="http://wordpress.org/extend/plugins/mute-screamer/changelog/">changelog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/12/mute-screamer-1-0-4/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Multiple PHP versions</title>
		<link>http://notfornoone.com/2011/11/multiple-php-versions/</link>
		<comments>http://notfornoone.com/2011/11/multiple-php-versions/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 03:18:19 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=1367</guid>
		<description><![CDATA[Derick Rethans has a nice write up on installing multiple PHP versions for developing, testing and for supporting different configuration needs. Also on this topic you may want to checkout phpfarm developed by Christian Weiske.]]></description>
			<content:encoded><![CDATA[<p>Derick Rethans has a nice write up on <a href="http://derickrethans.nl/multiple-php-version-setup.html">installing multiple PHP versions</a> for developing, testing and for supporting different configuration needs.</p>
<p>Also on this topic you may want to checkout <a href="http://cweiske.de/tagebuch/Introducing%20phpfarm.htm">phpfarm</a> developed by Christian Weiske.</p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/11/multiple-php-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy redirect for WordPress</title>
		<link>http://notfornoone.com/2011/10/handy-redirect-for-wordpress/</link>
		<comments>http://notfornoone.com/2011/10/handy-redirect-for-wordpress/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 01:10:05 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=1215</guid>
		<description><![CDATA[This is a handy little wrapper around wp_redirect I use in functions.php. Most of the time when using wp_redirct I want PHP to exit, so thats what the following function does, and while we&#8217;re at it why not throw in &#8230; <a href="http://notfornoone.com/2011/10/handy-redirect-for-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a handy little wrapper around wp_redirect I use in <a href="http://codex.wordpress.org/Theme_Development#Functions_File">functions.php</a>. Most of the time when using wp_redirct I want PHP to exit, so thats what the following function does, and while we&#8217;re at it why not throw in the ability to accept a post ID or a uri for the location.</p>
<pre class="php:standard">
/**
 * A handy wrapper to wp_redirect which exits after calling wp_redirect.
 * $location can be a url or a post id.
 *
 * @param string|integer
 * @return bool False if $location is not set
 */
function wptf_redirect( $location = '', $status = 302 ) {
	$permalink = false;

	if( is_int( $location ) ) {
		$permalink = true;
		$location = get_permalink( $location );
	}

	if ( ! $location ) {
		return false;
	}

	if( ! $permalink ) {
		$location = ltrim( $location, '/' );
		$location = '/'.trailingslashit( $location );
		$location = get_bloginfo( 'url' ).$location;
	}

	wp_redirect( $location, $status );
	exit;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/10/handy-redirect-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mute Screamer 1.0.3</title>
		<link>http://notfornoone.com/2011/07/mute-screamer-103/</link>
		<comments>http://notfornoone.com/2011/07/mute-screamer-103/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 13:56:50 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Mute Screamer]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=1036</guid>
		<description><![CDATA[Mute Screamer 1.0.3 is now available in the WordPress plugin directory. This is a minor update which addresses some bug fixes and improves compatibility with WordPress 3.2. See the changelog for full details.]]></description>
			<content:encoded><![CDATA[<p>Mute Screamer 1.0.3 is now available in the WordPress plugin directory. This is a minor update which addresses some bug fixes and improves compatibility with WordPress 3.2.</p>
<p>See the <a href="http://wordpress.org/extend/plugins/mute-screamer/changelog/">changelog</a> for full details.</p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/07/mute-screamer-103/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mute Screamer 1.0.1 released</title>
		<link>http://notfornoone.com/2011/05/mute-screamer-101/</link>
		<comments>http://notfornoone.com/2011/05/mute-screamer-101/#comments</comments>
		<pubDate>Mon, 02 May 2011 13:18:13 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Mute Screamer]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=675</guid>
		<description><![CDATA[Mute Screamer 1.0.1 is a maintenance release which fixes numerous bugs. This release fixes the automatic updates from PHPIDS. PHPIDS recently updated their project tracking software, so a few changes were needed to get the updates from PHPIDS working again. &#8230; <a href="http://notfornoone.com/2011/05/mute-screamer-101/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/mute-screamer/">Mute Screamer 1.0.1</a> is a maintenance release which fixes numerous bugs.</p>
<p>This release fixes the automatic updates from <a href="http://phpids.org/">PHPIDS</a>.</p>
<p>PHPIDS recently updated their project tracking software, so a few changes were needed to get the updates from PHPIDS working again.</p>
<p>See the <a href="http://wordpress.org/extend/plugins/mute-screamer/changelog/">changelog</a> for full details.</p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/05/mute-screamer-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mute Screamer 1.0 released</title>
		<link>http://notfornoone.com/2011/02/mute-screamer-1-0-released/</link>
		<comments>http://notfornoone.com/2011/02/mute-screamer-1-0-released/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 12:50:02 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Mute Screamer]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=111</guid>
		<description><![CDATA[Following the latest release of WordPress comes the latest version of Mute Screamer. Get your copy or update via the WordPress admin. The biggest change in this release is ip banning and attack throttling. You can configure Mute Screamer to &#8230; <a href="http://notfornoone.com/2011/02/mute-screamer-1-0-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Following the <a href="http://wordpress.org/news/2011/02/threeone/">latest release</a> of WordPress comes the latest version of Mute Screamer.</p>
<p>Get your <a href="http://wordpress.org/extend/plugins/mute-screamer/">copy</a> or update via the WordPress admin.</p>
<p>The biggest change in this release is ip banning and attack throttling.</p>
<p>You can configure Mute Screamer to ban clients when an attack is over the specified ban threshold. For attack throttling clients will be banned after a specified number of repeated attacks.</p>
<h3>New features</h3>
<ul>
<li>IP banning</li>
<li>The ability to add fields to the exclusion list while on the intrusions page</li>
<li>Email spam prevention</li>
</ul>
<h3>Other updates include:</h3>
<ul>
<li>i18n support</li>
<li>Updated 500.php template</li>
</ul>
<p>Have a look at the <a href="http://wordpress.org/extend/plugins/mute-screamer/changelog/">change log</a> for the full list of improvements and enhancements.</p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2011/02/mute-screamer-1-0-released/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Snow Leopard 10.6.5 and apachectl</title>
		<link>http://notfornoone.com/2010/11/snow-leopard-10-6-5-and-apachectl/</link>
		<comments>http://notfornoone.com/2010/11/snow-leopard-10-6-5-and-apachectl/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 03:30:15 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apachectl]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=76</guid>
		<description><![CDATA[I just upgraded to 10.6.5 and noticed that apachectl stops working properly. When I run apacheclt now it gives me this error: /usr/sbin/apachectl: line 82: ulimit: open files: cannot modify limit: Invalid argument The problem seems to be with the &#8230; <a href="http://notfornoone.com/2010/11/snow-leopard-10-6-5-and-apachectl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just upgraded to 10.6.5 and noticed that apachectl stops working properly. When I run apacheclt now it gives me this error:</p>
<pre class="shell:standard">/usr/sbin/apachectl: line 82: ulimit: open files: cannot modify limit: Invalid argument</pre>
<p>The problem seems to be with the ULIMIT variable in the shell script:</p>
<pre class="shell:standard">ULIMIT_MAX_FILES=&quot;ulimit -S -n `ulimit -H -n`&quot;</pre>
<p>I think the problem is that ulimit returns &#8220;unlimited&#8221; which cannot be used in the command ulimit -S -n, so I just changed the ULIMIT back to what it was before upgrading to 10.6.5:</p>
<pre class="shell:standard">ULIMIT_MAX_FILES=&quot;&quot;</pre>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2010/11/snow-leopard-10-6-5-and-apachectl/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Mute Screamer 0.58</title>
		<link>http://notfornoone.com/2010/11/mute-screamer-58/</link>
		<comments>http://notfornoone.com/2010/11/mute-screamer-58/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 01:25:28 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[Mute Screamer]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=50</guid>
		<description><![CDATA[This release added support for automatic updates from phpids.org, this means you don&#8217;t have to wait for Mute Screamer to be updated to get the latest rules and converter for PHPIDS. The update process will check phpids.org for changes to &#8230; <a href="http://notfornoone.com/2010/11/mute-screamer-58/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This release added support for automatic updates from <a href="http://phpids.org">phpids.org</a>, this means you don&#8217;t have to wait for Mute Screamer to be updated to get the latest rules and converter for PHPIDS.</p>
<p>The update process will check phpids.org for changes to default_filter.xml and Converter.php. If an update is found it will be displayed on the Updates page in the WordPress admin.</p>
<p><a href="http://notfornoone.com/wp-content/uploads/2010/11/mscr-update-01.jpg"><img class="alignnone size-large wp-image-55" title="mscr-update-01" src="http://notfornoone.com/wp-content/uploads/2010/11/mscr-update-01-1024x618.jpg" alt="" width="640" height="386" /></a></p>
<p>As we are updating Mute Screamer core files we want to be very careful about what is to be updated. That is why when going through the update process you will be shown a diff of the changes to be applied to either default_filter.xml and/or Converter.php.</p>
<p>This lets you see exactly what is going to be changed and gives you a chance to review the changes to make sure they are legit. It was also a good excuse to use the diff engine included in WordPress that is used for comparing post revisions. As always have a backup of your site before running any updates.</p>
<p><a href="http://notfornoone.com/wp-content/uploads/2010/11/mscr-diff-01.jpg"><img class="alignnone size-large wp-image-54" title="mscr-diff-01" src="http://notfornoone.com/wp-content/uploads/2010/11/mscr-diff-01-1024x618.jpg" alt="" width="640" height="386" /></a></p>
<p><a href="http://wordpress.org/extend/plugins/mute-screamer/">Download Mute Screamer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2010/11/mute-screamer-58/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHP 5.3 with Homebrew on 10.6 Snow Leopard</title>
		<link>http://notfornoone.com/2010/07/install-php53-homebrew-snow-leopard/</link>
		<comments>http://notfornoone.com/2010/07/install-php53-homebrew-snow-leopard/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 02:39:29 +0000</pubDate>
		<dc:creator>ampt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://notfornoone.com/?p=8</guid>
		<description><![CDATA[Update adamv&#8217;s homebrew-alt repository is a good source for duplicate formulae and has a PHP formula, much like this one. The great thing about homebrew-alt is that you can find other useful formulae and they are all in the one &#8230; <a href="http://notfornoone.com/2010/07/install-php53-homebrew-snow-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="update" style="margin-bottom: 1em;padding: 1em;border:1px solid #c3c3c3; background: #f3f3f3;">
<strong>Update</strong><br />
<a href="https://github.com/adamv">adamv&#8217;s</a> <a href="https://github.com/adamv/homebrew-alt">homebrew-alt repository</a> is a good source for duplicate formulae and has a PHP formula, much like this one.<br />
The great thing about homebrew-alt is that you can find other useful formulae and they are all in the one place.
</div>
<p>Here are some notes on installing PHP 5.3.3 (the latest version at time of writing) with <a href="http://mxcl.github.com/homebrew/">Homebrew</a>, an awesome package manager for OS X.</p>
<ol>
<li>If you haven&#8217;t done so already, install Hombrew. Check out the <a href="http://wiki.github.com/mxcl/homebrew/installation">installation instructions</a> over at the Hombrew wiki.</li>
<li>Grab the latest copy of my PHP brew and copy it into your Homebrew Formula directory.
<pre class="shell:standard">curl -O https://raw.github.com/ampt/homebrew/php/Library/Formula/php.rb
mv php.rb `brew --prefix`/Library/Formula</pre>
</li>
<li>To see the available options:
<pre class="shell:standard">brew options php</pre>
</li>
<li>Run the brew install php command. The following will install PHP with Apache and MySQL support.
<pre class="shell:standard">brew install php --with-apache --with-mysql</pre>
<p>Or if you want to install php-fpm:</p>
<pre class="shell:standard">brew install php --with-fpm</pre>
<p><strong>Update:</strong> You can also just:</p>
<pre class="shell:standard"># How much do you trust me...
brew install https://raw.github.com/ampt/homebrew/php/Library/Formula/php.rb --with-apache --with-mysql</pre>
</li>
</ol>
<p>Once thats done you should be good to go.</p>
<p>Note: Depending on your setup you may want to add the following to your .bash_profile:</p>
<pre class="shell:standard">echo 'export PATH='`brew --prefix php`'/bin:$PATH' &gt;&gt; .bash_profile</pre>
<p>This will ensure that BASH has the correct path to the PHP you just installed.</p>
<h3>Bonus Points: xdebug</h3>
<p>Install <a href="http://www.xdebug.org/">xdebug</a> (there&#8217;s a brew for that) a great tool to help debug your PHP code:</p>
<pre class="shell:standard">brew install xdebug</pre>
]]></content:encoded>
			<wfw:commentRss>http://notfornoone.com/2010/07/install-php53-homebrew-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>97</slash:comments>
		</item>
	</channel>
</rss>

