Hi I have been trying to debug the internal 500 error for my website but I am failing to figure out the cause of the error.
error Link: https://www.hand-made.com.au/search?q=bags
Error: 500 Internal Error
I have tried to edit my php.ini file but no error is displaying
also where will my error be shown?
PHP.ini
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
?>
To display error just place the code below on the top of your page.
<?php
error_reporting(E_ALL);
?>
And the replace your php.ini file with the original php.ini file.
It might be because of a previous copy of your website loaded in your browser. Most of the time 500 error is resolved by refreshing the page. If it doesn't resolve the problem. Try clearing the cache and removing the saved cookies and then refresh the page. If the problem still persists. Please share your relevant code.