Website can't display page

I go to my website - my index file opens, it opens my main page, my main page then tries to open the next page but it doesn’t open and I get message: "HTTP 500 error

That’s odd… the website can’t display this page

The site may be under maintenance or could have a programming error."

I know it’s not my programming error because it worked the day before.

500 generally indicates coding issue

Try

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

Sorry for taking your time.
It was indeed a coding error. I had some input tags and the “print” ahead of it had been deleted.
Thank you for your time & understanding.

1 Like