Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP E_WARNING Input variables exceeded not displayed

Tags:

post

php

warnings

I have a problem with my PHP 5.3.24. My PHP not display E_WARNING message in my script.

I want to appear the following error:

Warning: Unknown: Input variables exceeded 1000

In my setup this error does not appear when it should appear. Here my php.ini file: http://pastebin.com/iC7yQ2bm

Follows the following discussion : Cannot post hidden input after update PHP 5.3.8 to PHP 5.3.24

Thanks for your help

like image 647
barbuslex Avatar asked Jul 19 '26 15:07

barbuslex


1 Answers

http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors

in your php.ini / htaccess

display_startup_errors = On

or you may need more...

error_reporting = -1
display_errors = On
display_startup_errors = On

sadly you can't do nothing more than print or not to print it


Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!