[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1338-g149b8c8

The branch, master has been updated via 149b8c89014a1d0e9317508fe71480e7587a5daf (commit) via 5113ef198fad589f7952b9982062ce2aba1847d4 (commit) via ee26cd1a4001d63c34881ffe2abfff89cebcefac (commit) via 75fd86af9e0870db70969a7d7b6c59e75979a1ad (commit) from 535cd23d4bb0e36d01a1df83bde145897f12eb74 (commit) - Log ----------------------------------------------------------------- commit 149b8c89014a1d0e9317508fe71480e7587a5daf Merge: 75fd86af9e0870db70969a7d7b6c59e75979a1ad 5113ef198fad589f7952b9982062ce2aba1847d4 Author: Michal Čihař <mcihar@novell.com> Date: Wed Apr 7 11:36:26 2010 +0200 Merge branch 'QA_3_3' commit 75fd86af9e0870db70969a7d7b6c59e75979a1ad Author: Michal Čihař <mcihar@novell.com> Date: Wed Apr 7 11:35:17 2010 +0200 Add some hints on running with Suhosin. ----------------------------------------------------------------------- Summary of changes: Documentation.html | 28 +++++++++++++++++++++++----- 1 files changed, 23 insertions(+), 5 deletions(-) diff --git a/Documentation.html b/Documentation.html index a472524..4aaeea8 100644 --- a/Documentation.html +++ b/Documentation.html @@ -3078,11 +3078,29 @@ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] <p> Yes but the default configuration values of Suhosin are known to cause problems with some operations, for example editing a table with many - columns and no primary key. Tuning information is available at - <a href="http://www.hardened-php.net/hphp/troubleshooting.html"> - http://www.hardened-php.net/hphp/troubleshooting.html</a>, - although the parameter names have changed (<tt>suhosin</tt> instead - of <tt>hphp</tt>). See also the <a href="#cfg_SuhosinDisableWarning"> + columns and no primary key or with textual primary key. +</p> +<p> + Suhosin configuration might lead to malfunction in some cases and it can + not be fully obeyed as phpMyAdmin is kind of application which needs to + transfer big amounts of fields in single HTTP request, what is something + what Suhosin tries to prevent. If you have problems, please adjust at + least following parameters: +</p> + +<ul> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_vars">suhosin.request.max_vars</a> should be increased (eg. 2048)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_vars">suhosin.post.max_vars</a> should be increased (eg. 2048)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_array_index_length">suhosin.request.max_array_index_length</a> should be increased (eg. 256)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_array_index_length">suhosin.post.max_array_index_length</a> should be increased (eg. 256)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_totalname_length">suhosin.request.max_totalname_length</a> should be increased (eg. 8192)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_totalname_length">suhosin.post.max_totalname_length</a> should be increased (eg. 8192)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.sql.bailout_on_error">suhosin.sql.bailout_on_error</a> needs to be disabled (the default)</li> + <li><a href="http://www.hardened-php.net/suhosin/configuration.html#logging_configuration">suhosin.log.*</a> should not include SQL, otherwise you get big slowdown</li> +</ul> + + <p> + You can also disable the warning using the <a href="#cfg_SuhosinDisableWarning"> <tt>SuhosinDisableWarning</tt> directive</a>. </p> hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař