如何关闭joomla的.htaccess文件中的魔术引号?
我开始使用Joomla 3,现在有问题,并且在搜索时发现需要关闭魔术引号才能正常运行。
我把这些行放在.htaccess文件中
php_value magic_quotes 0
php_flag magic_quotes off
php_value magic_quotes_gpc 0
php_flag magic_quotes_gpc off
现在我正在收到内部服务器错误..
如何在.htaccess文件中禁用魔术引号
在setup.php中,更改代码:
// Check for magic quotes gpc.
$option = new stdClass;
$option->label = JText::_('INSTL_MAGIC_QUOTES_GPC');
$option->state = (ini_get('magic_quotes_gpc') == true);
$option->notice = null;
$options[] = $option;
你看,强制设置为true ....然后jol可以安装完成
使用以下命令创建一个php.ini或php5.ini文件:
magic_quotes_gpc = Off
把它放在你的Joomla 3根目录下。 然后将您的Joomla 3根目录中的htaccess.txt更改为.htaccess。 将以下行添加到.htaccess文件(顶部),不要忘记在适用时将php.ini更改为php5.ini:
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/myusername/public_html/yourJ3folder
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
注意:不要忘记用你的路径改变suPHP_ConfigPath
参考https://docs.joomla.org/How_to_turn_off_magic_quotes_gpc_for_Joomla_3
链接地址: http://www.djcxy.com/p/26561.html上一篇: how to turn off magic quotes in .htaccess file for joomla?