的Joomla!安装挂

时间:2015-12-13 02:56:41

标签: php joomla joomla3.0 php-5.6

我有一个奇怪的问题(我想,因为我已经花了大约3个小时来挖掘SO和Google)。

在安装Joomla 3期间,它只是冻结了。我将包括一个截图。我的php.ini timeout设置为300,我的max_execution也设置为300File uploads设置为1024 MB

除此之外,我chmod /joomla目录到777(作为测试)并且仍然失败。

我已将libraries/joomla/filter/input.php

中的行更改为

FROM:

$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

TO:

$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

我还在这里概述了这些变化 - > http://www.templatemonster.com/help/joomla-troubleshooter-how-to-deal-with-deprecated-function-iconv_set_encoding-error.html#gref由于功能问题已被弃用。

除此之外,我确保/php5/sessions/权限设置已足够。我真的被困住了,不知道我可以采取哪些其他措施。

值得一提的是/var/log/apache2/error.log

中没有错误

在Apache重新启动和安装运行后,这是一个干净的日志:

[Sat Dec 12 19:19:13.360609 2015] [mpm_prefork:notice] [pid 29099] AH00163: Apache/2.4.12 (Ubuntu) configured -- resuming normal operations
[Sat Dec 12 19:19:13.360645 2015] [core:notice] [pid 29099] AH00094: Command line: '/usr/sbin/apache2'

这是安装概述:

Confirmation of configuration

当我点击“下一步”时,这就是冻结的地方:

Freezes 想法?

PHP 5.6.11 APACHE 2.4.12 MySQL 5.6.27

0 个答案:

没有答案