<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: code-fu and sps released</title>
	<atom:link href="http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/</link>
	<description>The life of a geek, father and husband</description>
	<lastBuildDate>Thu, 26 Jan 2012 22:56:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Tiago Faria</title>
		<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/comment-page-1/#comment-1018</link>
		<dc:creator>Tiago Faria</dc:creator>
		<pubDate>Sat, 18 Oct 2008 10:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://jorge.ulver.no/?p=315#comment-1018</guid>
		<description>Thanks Jorge!</description>
		<content:encoded><![CDATA[<p>Thanks Jorge!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorge</title>
		<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/comment-page-1/#comment-1017</link>
		<dc:creator>jorge</dc:creator>
		<pubDate>Sat, 18 Oct 2008 10:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://jorge.ulver.no/?p=315#comment-1017</guid>
		<description>Right. :) I&#039;ll set up a PHP4-enviroment and work out the problem there. Thanks for the feedback!</description>
		<content:encoded><![CDATA[<p>Right. :) I&#8217;ll set up a PHP4-enviroment and work out the problem there. Thanks for the feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiago Faria</title>
		<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/comment-page-1/#comment-1016</link>
		<dc:creator>Tiago Faria</dc:creator>
		<pubDate>Sat, 18 Oct 2008 10:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://jorge.ulver.no/?p=315#comment-1016</guid>
		<description>Well, changing it to PHP5 and enabling Magic Quotes via .htaccess fixed the problem.

The issue I&#039;m having is that the rest of site cannot run on PHP5, and so I have to keep PHP4. On PHP4, the code-fu problem still exists. :(</description>
		<content:encoded><![CDATA[<p>Well, changing it to PHP5 and enabling Magic Quotes via .htaccess fixed the problem.</p>
<p>The issue I&#8217;m having is that the rest of site cannot run on PHP5, and so I have to keep PHP4. On PHP4, the code-fu problem still exists. :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorge</title>
		<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/comment-page-1/#comment-1015</link>
		<dc:creator>jorge</dc:creator>
		<pubDate>Sat, 18 Oct 2008 07:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://jorge.ulver.no/?p=315#comment-1015</guid>
		<description>I think I might&#039;ve found out something. Do you have magic quotes enabled on the webserver code-fu is running on?

&lt;pre lang=&quot;bash&quot;&gt;
[jorge@sinnataggen paste]$ cat /etc/php.ini &#124;grep -i magic
; - magic_quotes_gpc = Off         [Performance]
; Magic quotes
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape &#039; with &#039;&#039; instead of \&#039;).
magic_quotes_sybase = Off
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I think I might&#8217;ve found out something. Do you have magic quotes enabled on the webserver code-fu is running on?</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>jorge<span style="color: #000000; font-weight: bold;">@</span>sinnataggen paste<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ <span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>php.ini <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> magic
; - magic_quotes_gpc = Off         <span style="color: #7a0874; font-weight: bold;">&#91;</span>Performance<span style="color: #7a0874; font-weight: bold;">&#93;</span>
; Magic quotes
; Magic quotes <span style="color: #000000; font-weight: bold;">for</span> incoming GET<span style="color: #000000; font-weight: bold;">/</span>POST<span style="color: #000000; font-weight: bold;">/</span>Cookie data.
magic_quotes_gpc = Off
; Magic quotes <span style="color: #000000; font-weight: bold;">for</span> runtime-generated data, e.g. data from SQL, from <span style="color: #7a0874; font-weight: bold;">exec</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>, etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes <span style="color: #7a0874; font-weight: bold;">&#40;</span>escape <span style="color: #ff0000;">' with '</span><span style="color: #ff0000;">' instead of \'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>.
magic_quotes_sybase = Off</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: jorge</title>
		<link>http://jorge.fbarr.net/2008/10/16/code-fu-and-sps-released/comment-page-1/#comment-1014</link>
		<dc:creator>jorge</dc:creator>
		<pubDate>Sat, 18 Oct 2008 07:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://jorge.ulver.no/?p=315#comment-1014</guid>
		<description>Not right away, no. =/ I&#039;ll attempt to reproduce the error during the day. :) What language did you choose before pressing submit?</description>
		<content:encoded><![CDATA[<p>Not right away, no. =/ I&#8217;ll attempt to reproduce the error during the day. :) What language did you choose before pressing submit?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

