• <small id='Uz7zJ'></small><noframes id='Uz7zJ'>

  • <legend id='Uz7zJ'><style id='Uz7zJ'><dir id='Uz7zJ'><q id='Uz7zJ'></q></dir></style></legend>

    <tfoot id='Uz7zJ'></tfoot>

        • <bdo id='Uz7zJ'></bdo><ul id='Uz7zJ'></ul>

        <i id='Uz7zJ'><tr id='Uz7zJ'><dt id='Uz7zJ'><q id='Uz7zJ'><span id='Uz7zJ'><b id='Uz7zJ'><form id='Uz7zJ'><ins id='Uz7zJ'></ins><ul id='Uz7zJ'></ul><sub id='Uz7zJ'></sub></form><legend id='Uz7zJ'></legend><bdo id='Uz7zJ'><pre id='Uz7zJ'><center id='Uz7zJ'></center></pre></bdo></b><th id='Uz7zJ'></th></span></q></dt></tr></i><div id='Uz7zJ'><tfoot id='Uz7zJ'></tfoot><dl id='Uz7zJ'><fieldset id='Uz7zJ'></fieldset></dl></div>

        无法在本地主机中安装 joomla

        Unable to install joomla in localhost(无法在本地主机中安装 joomla)

          <legend id='pd4NC'><style id='pd4NC'><dir id='pd4NC'><q id='pd4NC'></q></dir></style></legend>

          <small id='pd4NC'></small><noframes id='pd4NC'>

          <i id='pd4NC'><tr id='pd4NC'><dt id='pd4NC'><q id='pd4NC'><span id='pd4NC'><b id='pd4NC'><form id='pd4NC'><ins id='pd4NC'></ins><ul id='pd4NC'></ul><sub id='pd4NC'></sub></form><legend id='pd4NC'></legend><bdo id='pd4NC'><pre id='pd4NC'><center id='pd4NC'></center></pre></bdo></b><th id='pd4NC'></th></span></q></dt></tr></i><div id='pd4NC'><tfoot id='pd4NC'></tfoot><dl id='pd4NC'><fieldset id='pd4NC'></fieldset></dl></div>

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

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                        • <bdo id='MuzXi'></bdo><ul id='MuzXi'></ul>
                          <tfoot id='MuzXi'></tfoot>

                          <small id='MuzXi'></small><noframes id='MuzXi'>

                          <i id='MuzXi'><tr id='MuzXi'><dt id='MuzXi'><q id='MuzXi'><span id='MuzXi'><b id='MuzXi'><form id='MuzXi'><ins id='MuzXi'></ins><ul id='MuzXi'></ul><sub id='MuzXi'></sub></form><legend id='MuzXi'></legend><bdo id='MuzXi'><pre id='MuzXi'><center id='MuzXi'></center></pre></bdo></b><th id='MuzXi'></th></span></q></dt></tr></i><div id='MuzXi'><tfoot id='MuzXi'></tfoot><dl id='MuzXi'><fieldset id='MuzXi'></fieldset></dl></div>

                          • <legend id='MuzXi'><style id='MuzXi'><dir id='MuzXi'><q id='MuzXi'></q></dir></style></legend>

                              <tbody id='MuzXi'></tbody>