I have an Apache web server, but by default display_errors is set to ‘0’
I can change that manually on my site with ini_set but I want this to effect all my sites, and not have to put that on every page.
How can I log into my server and change a directive?
So I figured out you can SHH into the server, go to the root dir, and then open etc/php.ini and change “display_errors = Off” to “display_errors = On”