Discuz论坛本地附件与远程附件的转换方法,详细步骤如下:
1 i+ K2 J }0 b, P3 Y! y" E 5 x; G' q# n+ W6 [; n2 L
一、后台--全局--上传设置--远程附件--启用远程附件:是" U5 \" X$ ]* h" o
1 _2 G+ X1 n: U7 d/ o/ n: [
这里根据后台提示和自己开启的远程服务器的FTP的信息配置就可以,要确保FTP具有以下权限:读取文件、写入文件、删除文件、创建目录、子目录继承。1 w% T8 g$ U+ H( `7 ^* }3 S3 m$ H
二、上传data/attachment下面的文件夹到远程空间的根目录下
/ |: h9 J" ~: c* q
% `+ { B+ G0 \. H- L7 J三。转换数据库的本地附件的数据为远程附件数据+ M B* o; s# ]) P# i
涉及到的数据库表:
' f q: r$ R% ?, Vpre_forum_attachment: S0 l; _; X# e- L; Q b
pre_home_pic
) ]; I+ N, U5 P; e" Wpre_portal_article_title( C% Z) r3 Z" ^
pre_portal_attachment
' O8 X& x& {% y @8 Lpre_portal_topic_pic
4 i6 N" [" w, ], ^0 z5 [! a6 Q8 d' G在后台--站长--数据库--升级--分别执行如下代码 n. ^4 f, u- W2 F' g
1、pre_forum_attachment! q1 a7 \: ^! ~, V
- update pre_forum_attachment_0 set remote = '1';+ V; G0 _* M) v6 m, D+ k
- update pre_forum_attachment_1 set remote = '1';6 M9 T% @# D8 A% J
- update pre_forum_attachment_2 set remote = '1';
. _1 \* r% L" N: U1 l - update pre_forum_attachment_3 set remote = '1';! w2 |% a" `4 @
- update pre_forum_attachment_4 set remote = '1';
1 c4 d5 K5 i% A8 t" m8 ^* p - update pre_forum_attachment_5 set remote = '1';
* U9 S5 ?8 R, w8 G8 s! \3 P8 Y - update pre_forum_attachment_6 set remote = '1';' {1 X" T( x2 R* ?
- update pre_forum_attachment_7 set remote = '1';
; b' G) Q; S% h) R - update pre_forum_attachment_8 set remote = '1';" x8 z( N% K* n- T
- update pre_forum_attachment_9 set remote = '1';
复制代码 2、pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic
# y& W! f. O+ X1 ~5 n0 _- a4 a- update pre_portal_article_title set remote=1;2 z7 y6 O. U* c& u6 P$ y
- update pre_portal_attachment set remote=1;+ r F" f) K% Q: ~
- update pre_portal_topic_pic set remote=1;
复制代码 3、由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)pre_home_pic,执行语句:6 g2 H5 ~, u9 ?6 j4 K
- update pre_home_pic set remote=remote+1;
复制代码 稳定互联提示:按照以上操作后,打开网站附件 - 属性看看是否已经在远程地址上了,如果显示正常说明就已经把Discuz本地附件成功转换为远程附件了。
- U) N+ U' Y/ m |