更改 Apache 服务器上的 PHP 指令

发布于 2024-11-08 18:48:22 字数 143 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叶落知秋 2024-11-15 18:48:22

关于如何登录服务器并直接在 php.ini 中更改设置:询问您的托管服务商。没有其他人可以帮助你。他们通常会提供一个页面,您可以在其中更改一些设置。

但您可以通过 .htaccess 更改设置。

php_flag display_errors on

推荐用于开发环境。在本地测试您的应用程序,而不是在实时服务器上。

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

php_flag display_errors on

This is only recommended for development environments. Test your applications local and not on your live server.

静待花开 2024-11-15 18:48:22

所以我发现你可以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"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文