Submit input NULL when submitting an event
This is an open discussion with 4 replies, filed under Troubleshooting.
Search
Nevermind, I just realized what is happening. The post array is too big. I've run into this problem before and I've never understood why it fails silently.
I've never understood why it fails silently
For anyone else interested or for those who have run across the same issue… PHP throws a E_WARNING but Symphony suppresses this to work with PHP >= 5.3.
http://us2.php.net/manual/en/info.configuration.php#ini.max-input-vars
Hah, thanks for this one. I was struggling with this exact same problem.
Cheers!
Glad it helped! I was losing my mind.
Create an account or sign in to comment.
Has anyone ever run into a problem where submitting an event results in the submit input not existing in the
$_POST
variable? As a result, the event is not triggered.Here is the event load method:
Here's the form that triggers the event:
If I
var_dump($_POST)
from the event's load method, I get all of the fields but noaction[update-products-items]
...It must be something stupid but I simply cannot find it after several hours.