Check what plugin has ID 3 - if it’s SiteDash Client, upgrade that to v1.9.2. If it’s something else let us know.
Unlikely that’s what causes the 500 error though. Can you access the PHP error log on your server?
Alternatively, as a temporary hack, I find adding this to the top of the index.php can be useful to diagnose these sorts of issues quickly as it will dump the error message to the screen:
Front-end 500 errors are often caused by a problem with your .htaccess file or a bad path or URL in your config.inc.php file.
Another possible issue is having a cached base href tag in a template. It should look like this (with the exclamation point) in the head section of all templates:
I learned how to enable PHP error logging in the WEB frontend of my service provider. This revealed the (stupid) typo error.
MarkH - your little hack to the index.php contained an extra quote behind the “1” - This is because I didn’t se the error message. It should be: <?php ini_set('display_errors', 1); error_reporting(E_ALL);