Unable to install joomla in localhost(无法在本地主机中安装 joomla)
问题描述
今天我试图在本地主机上安装 joomla 但在填写配置信息后使用 web 安装程序,当我点击下一步时没有任何反应,但只显示一个处理图像,如图所示我尝试了不同的浏览器,但到处都是同样的问题,我已经离开了 15-20 分钟,重启服务器/笔记本电脑还是一样的问题.我知道安装源没有问题,因为我之前已经安装过了.好吧,我正在使用 EasyPHP-DevServer-13.1VC11 请帮忙!!我在我的电脑上安装了 wordpress,它没有问题..
today i was trying to install joomla on localhost but with web installer after filling configuration info when i click next nothing happens but just an processing image is displayed as shown in image I tried with different browsers but same problem is everywhere,I have left it for 15-20 minutes ,restarted server/laptop yet same problem.I knew there is no problem with installation source as I have already installed it before. Well I am using EasyPHP-DevServer-13.1VC11 Please help!! I have wordpress installed in my computer and it have no issues..
推荐答案
Joomla 3.1.5 与 PHP 5.5 有 bug,但你不必担心让它工作你只需要修改一个文件 input.php
文件位于 libraries/joomla/filter/input.php
干得好:使用您喜欢的文本编辑器打开 input.php查找和替换
Joomla 3.1.5 have bug with PHP 5.5 but you do not need to worry to make it work you just need to modify an file input.php
file located in libraries/joomla/filter/input.php
here you go:
open input.php with your favorite text editor
find and replace
$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 文件,您可以在这里下载它,只需替换输入即可.php 和原来的一个,你就完成了..!!
or for your continence I have uploaded an fixed input.php file you can download it here just replace input.php with original one and you are done..!!
这篇关于无法在本地主机中安装 joomla的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在本地主机中安装 joomla


基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01