500

Hello, When i was designing my website its showing 500 internal server error at the front end after being displayed
can you guide me on how to correct that

Anyone with guide on how to control 500 internal error

Hi and welcome to the forum

6 Likes

In my development enviroment, and on a live site, the following code at the beginning of the PHP script helps output the issue to the browser, which would help you debug issues: ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);