SilverStripe application
I got the below error while browsing to SilverStripe application URL
“Website Error
There has been an error
The website server has not been able to respond to your request.”
I cant find any errors from error log, etc.
Solution: Try adding
?isDev=1 after the URL – that should give you a whole lot of text that may or may not help to identify the problem.
or
You can do this by adding Director::set_environment_type(”dev”); to your mysite/_config.php file.
the above 2 steps are to get the detail errors.
At last, you can add db/build?flush=1 behind the URL to flush the database.
~Done