如何启用指令“short_open_tag”通过. Htaccess Apache [PHP 5.3]
我目前使用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 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
您应该能够使用...
根据文档(
PHP_INI_ALL
)。希望这个伟大的 CMS 有一个前端控制器,您可以在其中将第一个
替换为
,然后使用
ini_set()
。You should be able to use...
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 useini_set()
.