discuz 论坛文件 static/image/postbg/3.jpg 下载出现问题,请查看您的服务器网络以及data目录
在discuz X2.5升级到x3.0时,后台一直提示 文件 static/image/postbg/3.jpg 下载出现问题,请查看您的服务器网络以及data目录 检查了目录没有问题,最后确定是代码的问题。
修改方法为:
找到网站根目录下的 source/admincp/admincp_upgrade.php 这个文件 的121行 代码 $offset
} elseif($step == 2) {
$fileseq = intval($_GET['fileseq']);
$fileseq = $fileseq ? $fileseq : 1;
$position = intval($_GET['position']);
$position = $position ? $position : 0;
$offset = 100 * 1024;
if($fileseq > count($updatefilelist)) {
if($upgradeinfo['isupdatedb']) {
|
把上面 $offset = 100 * 1024;修改为 $offset = 0;
在到后台点确定就可以正常升级论坛了…
