如何启用指令“short_open_tag”通过. Htaccess Apache [PHP 5.3]

发布于 2024-12-05 18:28:04 字数 261 浏览 1 评论 0原文

我目前使用的是 PHP 5.3.8,无法使用 php.ini 访问它。

我绝对必须启用 PHP 指令“short_open_tag”,因为我使用的 CMS 只使用

我尝试使用 Apache .htaccess (php_value Short_open_tag 1) 启用它,但添加此选项会导致 Apache 始终发出 500 错误。

注意:我的服务器在 CGI 模式下使用 PHP。

I am currently using PHP 5.3.8 and I can not access it with php.ini.

I absolutely must enable the PHP directive "short_open_tag" to On it because I work with a great CMS that uses only the <? ?>.

I tried to enable it with my Apache .htaccess (php_value short_open_tag 1), but adding this causes Apache to always issue 500 errors.

N.B. My server works with PHP in CGI mode.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

記憶穿過時間隧道 2024-12-12 18:28:04

如果 PHP 作为 CGI 运行,则不能使用 .htaccess 文件来设置 PHP 标志,这仅在 PHP 是 Apache 模块时才有效。

您可以使用 ini_set 从 PHP 脚本中设置此标志,但这对您没有帮助,因为 ini_set 只影响当前正在运行 PHP 进程并且不会持续存在。

您唯一的选择可能是请求您的主机在 php.ini 中启用短标记,或者编辑每个 PHP 文件以替换

If PHP is running as a CGI, then you cannot use a .htaccess file to set PHP flags, this only works if PHP is an Apache module.

You can use ini_set to set this flag from a PHP script, but this won't help you since ini_set only affects the currently running PHP process and doesn't persist.

Your only option may be to request your host enable short tags in php.ini, or edit each PHP file to replace <? with <?php

南城追梦 2024-12-12 18:28:04

您应该能够使用...

ini_set('short_open_tag', '1');

根据文档PHP_INI_ALL)。

希望这个伟大的 CMS 有一个前端控制器,您可以在其中将第一个 替换为 ,然后使用 ini_set()

You should be able to use...

ini_set('short_open_tag', '1');

According to the documentation (PHP_INI_ALL).

Hopefully this great CMS has a front controller where you can replace the first <? with <?php, and then use ini_set().

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