On 5/11/2020 at 1:13 PM, emanuelmarcato said:I managed to solve. A non-native module was set as display_error on in its code, that is, it was standing out in relation to php and prestashop commands.
Thank you all for your help
Thanks man, you saved my day. Now that you said it ... it's quite obvious! hahaha... i was desperated!!
Let me add my little contribution: in the linux terminal command you can find that module setting display_errors ON running this command on the root directory where you have installed Prestashop:
rgrep display_error
and you will get a large set of lines (about 30 in my case) where you must find something like:
ini_set('display_errors', 'On');
And edit that PHP file, search inside again display_errors and comment that line 😄