在终端输入:
tail -f /var/log/apache2/error.log
查看错误日志,可以看到如下错误日志:
日志显示在目录/discuz/install/index.php第12行出现“Call to undefined function
set_magic_quotes_runtime()”,这是因为我按安装的是php7.0,而这个函数“set_magic_quotes_runtime(0)”在php5.3以后就完全的移除了此特性。
修改办法:将“@set_magic_quotes_runtime(0);”替换成“@ini_set("magic_quotes_runtime",
0);”,如下图所示:
至此再次浏览器中安装disucz,即可以正常安装。