Discuz论坛本地附件与远程附件的转换方法,详细步骤如下:
% U @0 E; I' v; X7 f) C* W1 [9 I 0 A/ _, `8 e7 P) E, v9 q3 ~- K
一、后台--全局--上传设置--远程附件--启用远程附件:是* M% @* A9 F, u! [4 ]* ~
9 h) s$ ~: _3 k
这里根据后台提示和自己开启的远程服务器的FTP的信息配置就可以,要确保FTP具有以下权限:读取文件、写入文件、删除文件、创建目录、子目录继承。# U' l' ]+ N% p7 l7 w7 O- y
二、上传data/attachment下面的文件夹到远程空间的根目录下
) z* J% {9 s# @ N5 w: a4 j" I2 }0 ]4 s
三。转换数据库的本地附件的数据为远程附件数据 h. @5 G& W7 ?* j4 z
涉及到的数据库表:
. l$ p$ ]* ?1 u" y1 X1 O/ Cpre_forum_attachment* G) B( r8 M) o( O* E
pre_home_pic
1 {/ Q% J. D5 |; ?4 f; I3 spre_portal_article_title1 e7 m% H0 h/ e2 L% P1 d L
pre_portal_attachment
+ c" G: E0 V( S9 R3 i! L+ _pre_portal_topic_pic, K, t6 ? j) h& t3 d
在后台--站长--数据库--升级--分别执行如下代码6 R$ l2 I; J% s& p* L- V
1、pre_forum_attachment
7 p) I: h" u7 V0 C3 ^- update pre_forum_attachment_0 set remote = '1';
! J# R% ]) W' Z. X1 j1 T - update pre_forum_attachment_1 set remote = '1';/ @ S& t$ X1 B; A
- update pre_forum_attachment_2 set remote = '1';1 U- A+ z. _" K+ I) i! n$ A
- update pre_forum_attachment_3 set remote = '1';7 P2 q0 f( |5 n2 ~6 z
- update pre_forum_attachment_4 set remote = '1';/ U9 ~& n+ W$ P4 E
- update pre_forum_attachment_5 set remote = '1';
7 n8 O: t, U; ~, J1 u0 ?! u! h - update pre_forum_attachment_6 set remote = '1';
6 A* D+ F# I8 J' f! U - update pre_forum_attachment_7 set remote = '1';
( L) C# d. J/ v; U9 c& S2 ^; u - update pre_forum_attachment_8 set remote = '1';
, W( p2 Z3 a/ z- n3 ~ - update pre_forum_attachment_9 set remote = '1';
复制代码 2、pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic
$ j; V/ F5 J* G/ f ?0 o- update pre_portal_article_title set remote=1;
) W! G: ?$ A. |+ {( l% J( q4 Y' F& f - update pre_portal_attachment set remote=1;& j9 p& P+ r" r
- update pre_portal_topic_pic set remote=1;
复制代码 3、由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)pre_home_pic,执行语句:
3 i) _" o. S' s# K( Q, K" `- update pre_home_pic set remote=remote+1;
复制代码 稳定互联提示:按照以上操作后,打开网站附件 - 属性看看是否已经在远程地址上了,如果显示正常说明就已经把Discuz本地附件成功转换为远程附件了。
7 a+ ]# h- ?1 n2 f( r; y |