使用xampp在localhost上安装Joomla 3.0时卡在配置步骤上

时间:2013-09-14 17:10:00

标签: php joomla installation localhost

Jooma 3.0停留在安装的第一步,即配置。我使用xampp在本地安装它。我尝试了两件事:

  1. 以管理员身份运行xampp
  2. 在“php.ini”
  3. 中更改了session.use_cookies=1

    有人可以帮我解决这个问题吗?

4 个答案:

答案 0 :(得分:3)

多数民众赞成我如何解决这个问题

打开libraries / joomla / filter / input.php 替换以下

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

在input.php

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

答案 1 :(得分:1)

你得到什么错误?您在管理员电子邮件文本框中添加了什么内容?只需在该文本框中键入 admin@localhost.com 即可。检查其他字段,尤其是确认管理员密码。提供更多详细信息,以便更容易理解您的问题并为您提供帮助。

答案 2 :(得分:1)

转到wamp\www\Your joomla folder\installation\sql\mysql并打开Joomla.sql。找到术语ENGINE=InnoDB并将所有内容替换为ENGINE=MyIsam。 MyIsam更受支持并与Joomla兼容。

答案 3 :(得分:0)

如果你在使用xampp 1.7.3安装joomla 3.0时遇到错误,那么你应该转到xampp 1.8.1,因为xampp 1.7.3中的php版本是5.3.1而joomla 3.0.3需要php版本5.4。

所以,你要么转到xampp 1.8.1,要么试试wamp 2.2 e。这将解决您的问题。