the link you provide is not valid, it goes to a 404 error message.
the 500 error message is a vague message that only means there is a problem.
to turn error reporting on, add the following code at line 1:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
once we know the error, we can start troubleshooting.


