Q: How/where can I see php errors?A: Someone just asked this the other day at http://www.forum.osticket.com/d/discussion//fresh-install-and-bug-on-manage-form#latest this is how I answered them:Where the PHP error log is located is defined in your php.ini.Where the MySQL error log(s) are located is defined in your my.cnf.Where the Apache error logs are located is defined in your httpd.conf (or subfile).I would have no way of know where your log files are located for sure. The default locations also vary by OS and versions of said products.To
find the PHP error logs you can create a file with <php phpinfo();
?> in it; upload it to your site; and browse to it on your website.
Or from CLI you can php --info | grep error_log (*nix) or php --info |
findstr /r /c:"error_log" (windows).Alternatively you can enable error displaying in osTicket by following this:http://www.tmib.net/osticket-v19x-frequently-asked-questions-faq#2