Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

一个老bug,开启远程缩略图生成在本地

[复制链接]
liqi007 发表于 2016-1-3 10:25:10 | 显示全部楼层 |阅读模式
开启了远程附件,缩略图却上传到本地,浏览器上没有远程的缩略图,只能调用原图,增加了远程服务器的流量,很古老的问题,希望官方管管。
 楼主| liqi007 发表于 2016-1-3 10:27:32 | 显示全部楼层
还有远程下更新模块的速度也超慢,还用的阿里云的oss,配置的ossftp
回复

使用道具 举报

 楼主| liqi007 发表于 2016-1-4 11:15:39 | 显示全部楼层
问题解决了,曲线救国

首先把本地附件全部转远程
涉及到的数据库表:
pre_forum_attachment
pre_home_pic
pre_portal_article_title
pre_portal_attachment
pre_portal_topic_pic

在后台--站长--数据库--升级--分别执行如下代码

1、pre_forum_attachment
  1. update pre_forum_attachment_0 set remote = '1';
  2. update pre_forum_attachment_1 set remote = '1';
  3. update pre_forum_attachment_2 set remote = '1';
  4. update pre_forum_attachment_3 set remote = '1';
  5. update pre_forum_attachment_4 set remote = '1';
  6. update pre_forum_attachment_5 set remote = '1';
  7. update pre_forum_attachment_6 set remote = '1';
  8. update pre_forum_attachment_7 set remote = '1';
  9. update pre_forum_attachment_8 set remote = '1';
  10. update pre_forum_attachment_9 set remote = '1';
复制代码

2、pre_portal_article_title,pre_portal_attachment,pre_portal_topic_pic
  1. update pre_portal_article_title set remote=1;
  2. update pre_portal_attachment set remote=1;
  3. update pre_portal_topic_pic set remote=1;
复制代码

3、由于相册表中的remote取值还有一种情况为remote=2(论坛附件图片保存到相册)pre_home_pic,执行语句:
  1. update pre_home_pic set remote=remote+1;
复制代码

按照以上操作后,打开网站附件--属性看看是否已经在远程地址上了,如果显示正常说明就已经把Discuz x2.5 本地附件成功转换为远程附件了。

查看http://www.discuzlab.com/thread-904-1-1.html

然后后台把本地附件的url地址填写成"data/attachment"就好了,缩略图在本地。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-24 20:53 , Processed in 0.015215 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表