magic_quotes_gpc=on导致Joomla无法安装问题解决:
在installation/model/setup.php
中修改
$option->state = (ini_get('magic_quotes_gpc') == false);
为$option->state=true;
即可。
magic_quotes_gpc=on导致Joomla数据存储失败问题解决:
使用本人专门针对此问题开发了一个插件plg_autostripslashes
,对提交数据过滤,便可修复了magic_quotes_gpc=on
导致Joomla数据存储失败问题!