Suhosin is pretty strict. If you're running a site with pretty URLs (like a WordPress blog) you'll probably find that you have to increase things like
suhosin.get.max_name_length suhosin.request.max_totalname_length just to get your site to work. Secure-by-default is a good thing, but it can play havoc sometimes. :) CM On Fri, Aug 6, 2010 at 2:18 AM, Richard Owen <[email protected]> wrote: > Hi All, > > I've worked out why it is failing. I had the suhosin extension loaded in > php (http://www.hardened-php.net/suhosin/) and this restricts POST size so > it wasn't letting it through. > > When I disable the suhosin extension, the test suite passes :) > > Thanks, > Richard > > > On 6 Aug 2010, at 07:33, Walter Ebert wrote: > > You get this notice because $_POST['var']; is not set. > > You can change your PHP settings in php.ini to not display PHP > notices: > error_reporting = E_ALL & ~E_NOTICE > > Better would be to change the test to be PHP Strict compliant: > <?php isset($_POST['var']) echo $_POST['var']; ?> > > > Kind regards, > Walter > _______________________________________________ > Cherokee mailing list > [email protected] > http://lists.octality.com/listinfo/cherokee > > > > _______________________________________________ > Cherokee mailing list > [email protected] > http://lists.octality.com/listinfo/cherokee > >
_______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
