On Thu, Feb 16, 2012 at 4:41 PM, Thomas Gries mail@tgries.de wrote:
Am 17.02.2012 01:38, schrieb Rusty Burchfield:
On Thu, Feb 16, 2012 at 3:54 PM, Thomas Gries mail@tgries.de wrote:
Basically, after some checks, it sets $wgResourceLoaderMaxQueryLength=min($wgResourceLoaderMaxQueryLength,ini_get("suhosin.get.max_name_length"));
I corrected that already, it must be suhosin.get.max_value_length .
I don't believe that is correct either.
This is what "name" and "value" represent to Suhosin. http://example.com/?name1=value1&name2=value2
In this example, both values are 6 characters long, and the entire query string is 26 characters.
ResourceLoader uses many names and values in each URL. As long as individual names and values are under the configured limits, the URL is OK. However, $wgResourceLoaderMaxQueryLength limits the *total* length of *all* names and values.
~Rusty