I'm developing a Wordpress site. Currently testing locally (but same error is also on live site).
It is a common form with Ajax and PHP. I have enabled error reporting in PHP:
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
All errors were fixed, but there is still 500 error that Ajax is catching.
I have checked log on my WAMP server. There are no errors logged any more.
If necessary I can post all my code.
What can be causing this issue?