09-16-2017, 03:17 AM
Nearly every time this is caused by a misconfigured .htaccess file. If you have one in your root (or the folder above your root), rename it to htaccess.txt or something like that.
Otherwise, there is a good chance that your php is not set to display errors so it gives a more generic error.
Add these two lines beginning at line 2 of the page that is causing the errors...
Hopefully that will give you more information.
Otherwise, there is a good chance that your php is not set to display errors so it gives a more generic error.
Add these two lines beginning at line 2 of the page that is causing the errors...
Code:
error_reporting(E_ALL);
Code:
ini_set('display_errors', 1);
Hopefully that will give you more information.