叮叮 发表于 2013-4-24 04:37:54

discuz! X1.5、X2系列 本地附件与远程附件的转换

=============Discuz!x1.5=============

由于最近论坛上很多用户问及附件转移问题,所以现在总结下 有关远程附件转移的注意事项

1.首先将 data下attachment的文件夹移动到远程服务器上

2.后台配置远程附件,(确保ftp空间商提供的域名能够直接访问空间)如图:


3.更改数据库,其中需要更改的表有五个。分别为:
pre_forum_attachment
pre_home_pic
pre_portal_article_title
pre_portal_attachment
pre_portal_topic_pic
执行更新语句:
其中,pre_forum_attachment,pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic
语句为:update pre_forum_attachment set remote=1;update pre_portal_article_title set remote=1;
update pre_portal_attachment set remote=1;
update pre_portal_topic_pic set remote=1;
由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)
pre_home_pic
:update pre_home_pic set remote=remote+1;

注意:执行语句前,请备份数据库

===========Discuz!X2以上版本===========
由于X2 版本的程序已经将附件表进行拆分。所以在进行转换的时候 需要每个附件表进行处理
forum_attachment_0 至 forum_attachment_9 这10个表都要执行 update pre_forum_attachment_0 set remote =remote +1

其它表的转换和X1.5一样。
如果是远程附件转换到本地。先将附件复制到本地服务器的 data/attachment目录 然后 ,再执行 update( 对每个remote 进行-1):如 update pre_forum_attachment_0 set remote =remote -1

页: [1]
查看完整版本: discuz! X1.5、X2系列 本地附件与远程附件的转换