Hi all
I have disabled on-page error display per default. This is best practice for all
tools "in production", so as not to make it easier for attackers.
To see errors reported from your scripts, you can do two things:
1) look for them in /var/log/user.log, like this:
tail -F /var/log/user.log | grep <yourusername>
Note: this is on the webserver, hemlock, not on the login server.
2) temporarily enable on-page error display for your script(s) by putting the
following in your php code:
ini_set('display_errors', 1);
error_reporting(E_ALL & ~E_NOTICE);
Regards,
Daniel