X3.5把本地附件转换成远程附件后 部分txt类型的附件无法下载
使用以下sql操作把本地附件,转成了远程附件,并把附件放到了其他服务器。一部分txt类型的附件(大部分txt附件也可以正常下载)无法下载,谷歌浏览器提示 无法下载-网络错误 。其他格式的附件都没问题。检查了不能下载的附件文件读写权限没问题。
我知道答案 回答被采纳将会获得1 贡献 已有0人回答
update pre_forum_attachment_0 set remote=1 where remote=0;
update pre_forum_attachment_1 set remote=1 where remote=0;
update pre_forum_attachment_2 set remote=1 where remote=0;
update pre_forum_attachment_3 set remote=1 where remote=0;
update pre_forum_attachment_4 set remote=1 where remote=0;
update pre_forum_attachment_5 set remote=1 where remote=0;
update pre_forum_attachment_6 set remote=1 where remote=0;
update pre_forum_attachment_7 set remote=1 where remote=0;
update pre_forum_attachment_8 set remote=1 where remote=0;
update pre_forum_attachment_9 set remote=1 where remote=0;
我知道答案 回答被采纳将会获得1 贡献 已有0人回答