我有一个奇怪的问题(我想,因为我已经花了大约3个小时来挖掘SO和Google)。
在安装Joomla 3期间,它只是冻结了。我将包括一个截图。我的php.ini
timeout
设置为300
,我的max_execution
也设置为300
。 File 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'
这是安装概述:
当我点击“下一步”时,这就是冻结的地方:
PHP 5.6.11
APACHE 2.4.12
MySQL 5.6.27