I am facing The website encountered an unexpected error. Please try again later.
error while setup the site
When I analyzing about this most of the documents proposed to enable logging in the setting.php file
I tried as below in site/default/settings.php
$config['system.logging']['error_level']='verbose';
Then added
error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE);
I added these lines below <$php
starting line(None of the documents didn’t show at which line this has to be added)
Then I added the below lines to the same settings.php file at the last of the file
if (file_exists(__DIR__ . '/settings.local.php')) { include __DIR__ . '/settings.local.php'; }
Then I copied the sites/example.sites.php
file to sites/default/
and renamed as settings.local.php
Ref: https://catwolf.org/qs?id=180d30e9-9dcb-4e96-b030-7df34c77f5ab&x=x
Then I restarted apache and again loads the site but nothing happens same error shows again without any logs.
Did I miss anything or do I have to do anything else to enable the logging?
Can anyone please guide me on this? (I don’t know what to tag for this I cant find proper tags please don’t mind if its wrong)