Paul-D Posted March 19 Share Posted March 19 Hi I use a domain hosting company easy space. When try to aceess this page http://desmond-otoole.co.uk/HC/Contents.php I get Looks like there’s a problem with this site http://desmond-otoole.co.uk/HC/Contents.php might have a temporary problem or it could have moved. Error code: 500 Internal Server Error <?php echo "Testing"; exit; }?> Confusing. Quote Link to comment https://forums.phpfreaks.com/topic/332845-web-page-with-no-content-is-not-responding/ Share on other sites More sharing options...
mac_gyver Posted March 19 Share Posted March 19 the posted code contains a php syntax error, the } before the closing ?> tag. if php's error_reporting and display_errors settings are not set to report and display all errors, before your php code is requested, i.e. in the master or local php.ini or a .htaccess file (if php is running as a server module), you will receive a http 500 error response for a php syntax error (any fatal parse/runtime error.) if php's error_reporting is set to E_ALL (it should always be this value) and log_errors is set to ON (it should be this value on a live/public server), before your php code is requested, you should find the actual error message in the web server's error log. 1 Quote Link to comment https://forums.phpfreaks.com/topic/332845-web-page-with-no-content-is-not-responding/#findComment-1663292 Share on other sites More sharing options...
Paul-D Posted March 19 Author Share Posted March 19 ok thanks Quote Link to comment https://forums.phpfreaks.com/topic/332845-web-page-with-no-content-is-not-responding/#findComment-1663294 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.