简体   繁体   English

无法在localhost中安装joomla

[英]Unable to install joomla in localhost

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 今天我试图在localhost上安装joomla但是在填写配置信息之后使用web安装程序当我点击下一步没有任何反应时只显示处理图像,如图所示 在此输入图像描述 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. 我试过不同的浏览器,但同样的问题无处不在,我已经离开它15-20分钟,重新启动服务器/笔记本电脑但同样的问题。我知道安装源没有问题,因为我之前已经安装过它。 Well I am using EasyPHP-DevServer-13.1VC11 Please help!! 好吧,我使用的是EasyPHP-DevServer-13.1VC11请帮忙!! I have wordpress installed in my computer and it have no issues.. 我在我的电脑上安装了wordpress,它没有问题..

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 Joomla 3.1.5有PHP 5.5的bug但是你不需要担心让它工作你只需要修改一个文件input.php文件位于libraries/joomla/filter/input.php这里你去:open input.php用你最喜欢的文本编辑器查找和替换

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

with

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

And

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

with

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

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..!! 或者为了你的控制我已经上传了一个固定的input.php文件你可以在这里下载它只需用原来的input.php替换你就完成了.. !!

Joomla 3.x doesn't support PHP 5.5 which is what EasyPHP-DevServer-13.1VC11 uses. Joomla 3.x不支持PHP 5.5,这是EasyPHP-DevServer-13.1VC11使用的。 You need to downgrade to an EasyPHP-DevServer version that uses PHP 5.4 or 5.3, the choice is up to you. 您需要降级到使用PHP 5.4或5.3的EasyPHP-DevServer版本,您可以选择。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM