Discuz论坛本地附件与远程附件的转换方法,详细步骤如下:
# a" h K6 m) r- y9 {4 {' | / C3 K8 M3 L2 N+ S' A; U
一、后台--全局--上传设置--远程附件--启用远程附件:是
; l! s' a: ?+ |- n& f8 ^
. p( t( l& I2 O. A& `# w
这里根据后台提示和自己开启的远程服务器的FTP的信息配置就可以,要确保FTP具有以下权限:读取文件、写入文件、删除文件、创建目录、子目录继承。
" y( e2 L. M9 z# u/ ?$ G& z二、上传data/attachment下面的文件夹到远程空间的根目录下2 J6 b& Y8 r8 }% }4 b6 d7 V6 x
* K7 l! ]7 {* s8 z! o$ D% `
三。转换数据库的本地附件的数据为远程附件数据
+ ]% w# e- B7 {涉及到的数据库表:7 b) }4 i2 E5 X0 U
pre_forum_attachment5 d( G+ t6 X! X/ {, T7 |; u, z9 [
pre_home_pic
/ ~ P/ H7 j# r. k! apre_portal_article_title# W) o: `+ H2 _. q
pre_portal_attachment5 f# e" E$ ]% u2 }# K2 C
pre_portal_topic_pic
1 e. K# P' A+ }3 O& N在后台--站长--数据库--升级--分别执行如下代码
$ w% a9 y3 O! U7 I+ {8 v1、pre_forum_attachment ]5 w: q3 L U/ F
- update pre_forum_attachment_0 set remote = '1';
7 H7 V( p$ i3 p) [' K - update pre_forum_attachment_1 set remote = '1';
. c7 a" {, \4 T# ~1 M) D; v+ v - update pre_forum_attachment_2 set remote = '1';
: o+ Z9 L% W$ | - update pre_forum_attachment_3 set remote = '1';$ T( U" J( M W2 D2 o1 U
- update pre_forum_attachment_4 set remote = '1';: E) B: m8 t( \' r! K
- update pre_forum_attachment_5 set remote = '1';
3 M- E) C% V6 z - update pre_forum_attachment_6 set remote = '1';2 S: \( d* k! M6 i: U
- update pre_forum_attachment_7 set remote = '1';) g, v+ Q# {7 C: r/ ]: d- H. c
- update pre_forum_attachment_8 set remote = '1';/ K6 ]: D) z/ ~7 X# J
- update pre_forum_attachment_9 set remote = '1';
复制代码 2、pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic+ f, S' x# i, R7 y- f. ]
- update pre_portal_article_title set remote=1;
* [3 U/ d( [8 m4 U. O0 ` - update pre_portal_attachment set remote=1;. G r n# W/ q5 ? t
- update pre_portal_topic_pic set remote=1;
复制代码 3、由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)pre_home_pic,执行语句:
7 v( u5 l; a8 S) x+ }- update pre_home_pic set remote=remote+1;
复制代码 稳定互联提示:按照以上操作后,打开网站附件 - 属性看看是否已经在远程地址上了,如果显示正常说明就已经把Discuz本地附件成功转换为远程附件了。
* F6 P8 }) K5 M/ r: P |