<?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>Agence de Développement Informatique du Nord &#187; suhison</title>
	<atom:link href="http://blog.adin.pro/tag/suhison/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adin.pro</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 26 Dec 2019 08:54:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>PHP form limited to 1000 fields</title>
		<link>http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/</link>
		<comments>http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/#comments</comments>
		<pubDate>Fri, 15 Nov 2013 11:04:56 +0000</pubDate>
		<dc:creator><![CDATA[blogadmin]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[suhison]]></category>

		<guid isPermaLink="false">http://blog.adin.pro/?p=323</guid>
		<description><![CDATA[<p>Since PHP 5.3.9 form are limited to 1000 fields by default. To fix it, you can edit your php.ini file and modify this variable And don&#8217;t forget to restart apache. You can also edit it in your .htaccess file Change &#8230; <a href="http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/">PHP form limited to 1000 fields</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Since PHP 5.3.9 form are limited to 1000 fields by default.<br />
To fix it, you can edit your php.ini file and modify this variable</p>
<pre class="brush: bash; title: ; notranslate">
max_input_vars = 4000
</pre>
<p>And don&#8217;t forget to restart apache.</p>
<p>You can also edit it in your .htaccess file</p>
<pre class="brush: bash; title: ; notranslate">
 php_value max_input_vars 4000 
</pre>
<p>Change it directly in your php file with this</p>
<pre class="brush: bash; title: ; notranslate">
 ini_set('php_value max_input_vars', 4000); 
</pre>
<p>won&#8217;t work.</p>
<p>But change this varible may not fix your issue.<br />
If you have suhosin installed, you laso have to edit his configuration file (/etc/php5/apache2/conf.d/suhosin.ini)</p>
<pre class="brush: bash; title: ; notranslate">
suhosin.get.max_vars = 4000 
suhosin.post.max_vars = 4000 
suhosin.request.max_vars = 4000 
</pre>
<p>To check your suhison configuration, use phpinfo() or in your php script</p>
<pre class="brush: bash; title: ; notranslate">
echo ini_get('suhosin.post.max_vars');
</pre>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/">PHP form limited to 1000 fields</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adin.pro/2013-11-15/php-form-limited-to-1000-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
