PHP errors in log file

ryosal

New member
I’m using last version of ExeOutPut for PHP.

How can I know which are the errors that appears in the log file? My app does work perfectly in localhost and web, but stops in exe file.

The log file generated says only PHP Error: Found, but this isn’t enough to solve.

View attachment 1538
 
Yes I do. The latest. Is there a way for exeOutPut ignores all the php Notices and Warnings? I am sure no one is a fatal error, because in localhost runs perfect.
 
Last edited:
SOLVED !

I just add a line of code at the end of app.php file.
Code:
error_reporting(E_ERROR);
?>

Thanks for watching.
 
Last edited:
The PHP ERROR FOUND in the log is a bug that is fixed in version 2020. If you want, you can send me a PM and you’ll get access to the release that should be published in some days.
 
Back
Top