无限星辰工作室-客户无限互联网动力之源
标题:
Discuz系列教程-本地附件转远程附件设置
[打印本页]
作者:
crx349
时间:
2013-5-17 01:15
标题:
Discuz系列教程-本地附件转远程附件设置
程序版本:discuz!X1.5 X2 X2.5 X3
目的:本地和远程附件互相转换
适合人群:使用Discuz!系列的站长
1.首先将 data下attachment的文件夹移动到远程服务器上
2.后台配置远程附件,(确保ftp空间商提供的域名能够直接访问空间)如图:
(, 下载次数: 831)
上传
点击文件名下载附件
3.更改数据库,其中需要更改的表有五个。分别为:
pre_forum_attachment
pre_home_pic
pre_portal_article_title
pre_portal_attachment
pre_portal_topic_pic
复制代码
执行更新语句:
其中,pre_forum_attachment
执行语句:
update pre_forum_attachment_0 set remote = '1';
update pre_forum_attachment_1 set remote = '1';
update pre_forum_attachment_2 set remote = '1';
update pre_forum_attachment_3 set remote = '1';
update pre_forum_attachment_4 set remote = '1';
update pre_forum_attachment_5 set remote = '1';
update pre_forum_attachment_6 set remote = '1';
update pre_forum_attachment_7 set remote = '1';
update pre_forum_attachment_8 set remote = '1';
update pre_forum_attachment_9 set remote = '1';
复制代码
其他几个依次为pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic
语句:
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(家园表——这个表的remote字段比较特别,home本地图片—0;home远程图片—1;论坛本地图片—2;论坛远程图片—3)
update pre_home_pic set remote=remote+1;
复制代码
注意:执行语句前,请备份数据库,远程附件转换本地附件只需要把里面的1改为0即可
update pre_home_album set picflag=picflag+1 where picflag=1;
复制代码
本教程由无限星辰工作室
www.xmspace.net
独家原创,转账请注明地址和作者,谢谢!
欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://xmspace.net/)
Powered by Discuz! X3.4