无法在本地主机中安装 joomla

2023-10-16php开发问题
1

本文介绍了无法在本地主机中安装 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17