民审-M

Discuz!X3.4本地附件全部修改为远程附件的方法

作者:民审-M   发布时间:2018-04-02 14:49   回复数:2   浏览数:876
民审-M
8762民审-M金牌草根
2018-04-02 14:49:32
8762 2018-04-02 14:49:32
[color=rgb(62, 62, 62)]进行操作前,请备份数据库

[color=rgb(62, 62, 62)]一、本地转到远程
[color=rgb(62, 62, 62)]1、论坛后台–全局–上传设置–启用远程附件
[color=rgb(62, 62, 62)]2、将本地附件目录data/attachment里面的文件夹移动到远程服务器上
[color=rgb(62, 62, 62)]3、数据库执行sql语句

[color=rgb(62, 62, 62)]论坛的
[color=rgb(62, 62, 62)](where remote=0表示本地,where remote=1表示远程, pre_表示数据库表前缀)

[color=rgb(62, 62, 62)]update pre_forum_attachment_0 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_1 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_2 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_3 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_4 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_5 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_6 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_7 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_8 set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_forum_attachment_9 set remote=1 where remote=0;

[color=rgb(62, 62, 62)]门户的

[color=rgb(62, 62, 62)]update pre_portal_article_title set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_portal_attachment set remote=1 where remote=0;
[color=rgb(62, 62, 62)]update pre_portal_topic_pic set remote=1 where remote=0;

[color=rgb(62, 62, 62)]相册的
[color=rgb(62, 62, 62)]{相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)}

[color=rgb(62, 62, 62)]update pre_home_pic set remote=remote+1;

[color=rgb(62, 62, 62)]二、远程转到本地
[color=rgb(62, 62, 62)]后台关闭远程附件设置,将附件移动到本地服务器的 data/attachment目录后执行sql即可
[color=rgb(62, 62, 62)](where remote=0表示本地,where remote=1表示远程, pre_表示数据库表前缀)

[color=rgb(62, 62, 62)]update pre_forum_attachment_0 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_1 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_2 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_3 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_4 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_5 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_6 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_7 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_8 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_forum_attachment_9 set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_portal_article_title set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_portal_attachment set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_portal_topic_pic set remote=0 where remote=1;
[color=rgb(62, 62, 62)]update pre_home_pic set remote=remote-1;


小七50
沙发小七50步入草根 2018-04-03 08:19
看起来不错啊啊啊啊
80430001
板凳80430001步入草根 2025-11-10 03:28
支持楼主
游客
登录后才可以回帖,登录 或者 注册