I need to add this values to my htaccess:
suhosin.request.max_vars = 8000
suhosin.post.max_vars = 8000
If I just add them like that I get an Internal Server Error
Which is the right way to include them?

|
I need to add this values to my htaccess:
If I just add them like that I get an Internal Server Error Which is the right way to include them?
|
||||
|
|
|
The problem is that Apache doesn't know what to do with those values, hence the internal server error. You need to change the lines to the following:
The For more info on using Edit: According to |
|||||||
|
|
Up-voting the last answer and also, the next problem is Suhosin's perdir directive. perdir is visible in your phpinfo() output, but not in the Suhosin docs. This site explains pretty well, http://www.mattzuba.com/2011/04/suhosins-suhosin-perdir-directive/#more-153 |
|||
|
|