<?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: PHP $_POST array empty although php://input and raw post data is available?</title>
	<atom:link href="http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/feed/" rel="self" type="application/rss+xml" />
	<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/</link>
	<description>Internet Handyman</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:14:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: branio</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311322</link>
		<dc:creator>branio</dc:creator>
		<pubDate>Fri, 19 Feb 2010 13:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311322</guid>
		<description>&lt;p&gt;Cesar: Thanks! It solved my problem! I&#039;m happy now :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Cesar: Thanks! It solved my problem! I&#8217;m happy now <img src='http://getluky.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: getluky</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311234</link>
		<dc:creator>getluky</dc:creator>
		<pubDate>Fri, 04 Dec 2009 22:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311234</guid>
		<description>&lt;p&gt;Cesar: good point. This is the type of thing that Firebug is really handy for - if you can see via the Net panel that it&#039;s following a 302 redirect instead of sending a POST payload, you should be able to figure out what&#039;s going on pretty quickly.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Cesar: good point. This is the type of thing that Firebug is really handy for &#8211; if you can see via the Net panel that it&#8217;s following a 302 redirect instead of sending a POST payload, you should be able to figure out what&#8217;s going on pretty quickly.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar Gonzalez</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311196</link>
		<dc:creator>Cesar Gonzalez</dc:creator>
		<pubDate>Tue, 27 Oct 2009 16:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311196</guid>
		<description>&lt;p&gt;Here&#039;s another possible cause -- my form was submitting to http://domain.com/ and I had set up an automatic redirect to add the &quot;WWW.&quot; The $_POST array was getting emptied in the process.  So to fix it all I had to do was submit to http://www.domain.com/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Here&#8217;s another possible cause &#8212; my form was submitting to <a href="http://domain.com/" rel="nofollow">http://domain.com/</a> and I had set up an automatic redirect to add the &#8220;WWW.&#8221; The $_POST array was getting emptied in the process.  So to fix it all I had to do was submit to <a href="http://www.domain.com/" rel="nofollow">http://www.domain.com/</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: getluky</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311140</link>
		<dc:creator>getluky</dc:creator>
		<pubDate>Thu, 03 Sep 2009 20:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311140</guid>
		<description>&lt;p&gt;Actually, this is the same cause - if you read the post carefully, &quot;MB&quot; is invalid, but &quot;M&quot; is correct. It&#039;s tricky!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually, this is the same cause &#8211; if you read the post carefully, &#8220;MB&#8221; is invalid, but &#8220;M&#8221; is correct. It&#8217;s tricky!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311138</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 03 Sep 2009 03:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311138</guid>
		<description>&lt;p&gt;I just had the same, problem but opposite cause. Under PHP 5.3.0 I had to change from &quot;200MB&quot; to &quot;200M&quot; and it worked. Ridiculous. Thanks for the tip, though, it put the idea in my head to try it!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I just had the same, problem but opposite cause. Under PHP 5.3.0 I had to change from &#8220;200MB&#8221; to &#8220;200M&#8221; and it worked. Ridiculous. Thanks for the tip, though, it put the idea in my head to try it!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-311088</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Fri, 24 Jul 2009 16:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-311088</guid>
		<description>&lt;p&gt;Great! Same problem as Mark... Thanks. You saved my day.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great! Same problem as Mark&#8230; Thanks. You saved my day.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-310889</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 13 Apr 2009 15:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-310889</guid>
		<description>&lt;p&gt;I was running into a blank POST array today, but turns out that the reason mine was empty was that my post&lt;em&gt;max&lt;/em&gt;size variable in php.ini was set to higher than the amount of physical RAM in the machine.&lt;/p&gt;

&lt;p&gt;Thanks for the script, It helped me debug the issue.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I was running into a blank POST array today, but turns out that the reason mine was empty was that my post<em>max</em>size variable in php.ini was set to higher than the amount of physical RAM in the machine.</p>

<p>Thanks for the script, It helped me debug the issue.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: getluky</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-310794</link>
		<dc:creator>getluky</dc:creator>
		<pubDate>Tue, 10 Mar 2009 17:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-310794</guid>
		<description>&lt;p&gt;Glad I could help!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Glad I could help!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-310793</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Tue, 10 Mar 2009 11:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-310793</guid>
		<description>&lt;p&gt;Woo who! Thanks for the heads up. I would have spent forever on this.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Woo who! Thanks for the heads up. I would have spent forever on this.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Norse</title>
		<link>http://getluky.net/2009/02/24/php-_post-array-empty-although-phpinput-and-raw-post-data-is-available/comment-page-1/#comment-310783</link>
		<dc:creator>Norse</dc:creator>
		<pubDate>Tue, 03 Mar 2009 11:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://getluky.net/?p=425#comment-310783</guid>
		<description>&lt;p&gt;You sir are a gentleman and a scholar.&lt;/p&gt;

&lt;p&gt;This was exactly the problem I was having. I modified my php.ini months ago and must have never noticed that POST didn&#039;t work after that, it was only today when I went to write a quick script that relied on POST data and found that it wasn&#039;t working.&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You sir are a gentleman and a scholar.</p>

<p>This was exactly the problem I was having. I modified my php.ini months ago and must have never noticed that POST didn&#8217;t work after that, it was only today when I went to write a quick script that relied on POST data and found that it wasn&#8217;t working.</p>

<p>Thank you!</p>]]></content:encoded>
	</item>
</channel>
</rss>
