Discuz论坛本地附件与远程附件的转换方法,详细步骤如下:/ q. p$ ?8 V# d$ O
2 f3 A6 f# N/ x- u5 v" Y$ W一、后台--全局--上传设置--远程附件--启用远程附件:是
8 H% K5 S8 ]1 H7 y" k0 s
2 y: c. `0 P; M4 t9 c4 S5 i- e' w这里根据后台提示和自己开启的远程服务器的FTP的信息配置就可以,要确保FTP具有以下权限:读取文件、写入文件、删除文件、创建目录、子目录继承。# F; \& C6 p; V% C* m
二、上传data/attachment下面的文件夹到远程空间的根目录下! U" \6 o' I. A) A7 M. u
" ?% r- {- `' [* N2 u0 h; x( Q' v
三。转换数据库的本地附件的数据为远程附件数据
! E: t8 m9 A r涉及到的数据库表:' [8 g5 l. k: q1 f! j" H
pre_forum_attachment$ e0 i8 H3 m# |, B
pre_home_pic7 H; n( ^7 X$ S
pre_portal_article_title6 R% R0 m/ Z V0 D* `0 F [
pre_portal_attachment
- ~' @4 ]% V. q3 npre_portal_topic_pic( _1 m* V8 R @
在后台--站长--数据库--升级--分别执行如下代码 E+ h5 x! | W4 y0 K
1、pre_forum_attachment/ H- V% H, w* K
- update pre_forum_attachment_0 set remote = '1';4 f h) y- J9 B3 g6 H
- update pre_forum_attachment_1 set remote = '1';& R: K* u+ E* Z+ r) \8 @& d
- update pre_forum_attachment_2 set remote = '1';8 x* X2 m! u+ x4 O* }, d
- update pre_forum_attachment_3 set remote = '1';
. e, j1 Y: }! D- w. ~ - update pre_forum_attachment_4 set remote = '1';+ a4 `5 q$ p* G8 I* {
- update pre_forum_attachment_5 set remote = '1';
- F7 [9 n" R4 F3 u" d - update pre_forum_attachment_6 set remote = '1';& U/ f/ F3 i& g/ W
- update pre_forum_attachment_7 set remote = '1';
1 t+ v- X6 J& | - update pre_forum_attachment_8 set remote = '1';
5 M8 K. i0 F1 O* s, E6 [: u - update pre_forum_attachment_9 set remote = '1';
复制代码 2、pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic! e; r* V5 ~% x% r* P$ P0 X7 ?# w2 }) ]
- update pre_portal_article_title set remote=1;8 B4 h4 p$ b0 X7 d6 b
- update pre_portal_attachment set remote=1;
6 j' O) t% _8 r: A! f - update pre_portal_topic_pic set remote=1;
复制代码 3、由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)pre_home_pic,执行语句:
9 n5 E4 a1 G0 ~4 j' G- update pre_home_pic set remote=remote+1;
复制代码 稳定互联提示:按照以上操作后,打开网站附件 - 属性看看是否已经在远程地址上了,如果显示正常说明就已经把Discuz本地附件成功转换为远程附件了。
5 h4 J/ E$ U: }& O# R1 \3 ? |