更改 Apache 服务器上的 PHP 指令
我有一个 Apache Web 服务器,但默认情况下 display_errors 设置为“0”,
我可以使用 ini_set 在我的网站上手动更改它,但我希望这会影响我的所有网站,而不必将其放在每个页面上。
如何登录我的服务器并更改指令?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于如何登录服务器并直接在
php.ini
中更改设置:询问您的托管服务商。没有其他人可以帮助你。他们通常会提供一个页面,您可以在其中更改一些设置。但您可以通过
.htaccess
更改设置。这仅推荐用于开发环境。在本地测试您的应用程序,而不是在实时服务器上。
On how to log in to your server and change the setting directly in the
php.ini
: Ask your hoster. Nobody else can help you with that. They often provide a page, where you can change some settings.But you may change the setting via
.htaccess
This is only recommended for development environments. Test your applications local and not on your live server.
所以我发现你可以SHH进入服务器,转到根目录,然后打开etc/php.ini并将“display_errors = Off”更改为“display_errors = On”
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"