10-29-2017, 02:25 PM
It looks like your server is configured to hide php errors, so it gives a generic error message.
On whichever page you are getting the error 500, can you add these two lines just after the opening php tag....
error_reporting(E_ALL);
ini_set('display_errors', 1);
That should give you a more descript error.
On whichever page you are getting the error 500, can you add these two lines just after the opening php tag....
error_reporting(E_ALL);
ini_set('display_errors', 1);
That should give you a more descript error.