php – 无法在localhost中安装joomla
作者:互联网
今天我试图在localhost上安装joomla但是在填写配置信息之后使用web安装程序当我点击下一步没有任何反应时只显示处理图像,如图所示
我试过不同的浏览器,但同样的问题无处不在,我已经离开它15-20分钟,重新启动服务器/笔记本电脑但同样的问题.我知道安装源没有问题,因为我之前已经安装过它.
好吧,我使用的是EasyPHP-DevServer-13.1VC11请帮忙!!
我在我的电脑上安装了wordpress,它没有问题..
解决方法:
Joomla 3.1.5有PHP 5.5的错误但你不需要担心让它工作你只需要修改位于libraries / joomla / filter / input.php中的文件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文件,你可以下载它here只需用原来的替换input.php就可以了…… !!
标签:php,localhost,joomla,joomla3-0 来源: https://codeday.me/bug/20190529/1176727.html