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

Reply via email to