Jump to content

Recommended Posts

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.

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.

  • Great Answer 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.