4

今天我试图在 localhost 上安装 joomla,但是在填写配置信息后使用 web 安装程序,当我单击下一步时没有任何反应,但只显示处理图像,如图所示 在此处输入图像描述我尝试使用不同的浏览器但同样的问题无处不在,我已经离开了15-20分钟,重新启动服务器/笔记本电脑还是同样的问题。我知道安装源没有问题,因为我之前已经安装过了。好吧,我正在使用 EasyPHP-DevServer-13.1VC11 请帮助!我在我的电脑上安装了wordpress,它没有问题..

4

2 回答 2

4

Joomla 3.1.5 与 PHP 5.5 有错误,但您无需担心使其工作,您只需修改input.php位于libraries/joomla/filter/input.php 此处的文件文件即可:使用您最喜欢的文本编辑器打开 input.php 查找和替换

$source = preg_replace('/&#(\d+);/me', "utf8_encode(chr(\\1))", $source); // decimal notation

$source = preg_replace_callback('/&#(\d+);/m', function($m){return utf8_encode(chr($m[1]));}, $source); // decimal notation 

$source = preg_replace('/&#x([a-f0-9]+);/mei', "utf8_encode(chr(0x\\1))", $source); // hex notation 

$source = preg_replace_callback('/&#x([a-f0-9]+);/mi', function($m){return utf8_encode(chr('0x'.$m[1]));}, $source); // hex notation 

或者为了你的节制,我上传了一个固定的 input.php 文件,你可以在这里下载它,只需将 input.php 替换为原始文件,你就完成了..!!

于 2013-09-18T03:58:20.843 回答
2

Joomla 3.x 不支持 EasyPHP-DevServer-13.1VC11 使用的 PHP 5.5。您需要降级到使用 PHP 5.4 或 5.3 的 EasyPHP-DevServer 版本,选择权在您。

于 2013-09-17T19:06:10.767 回答