|
发表于 2017-11-25 08:44:34
|
显示全部楼层
|阅读模式
来自 中国–河南–新乡
现在很多朋友的discuz都使用OSS来做远程附件,提升图片打开体验,但是,Discuz远程附件 缩略图和裁切都无法使用,在DIY模块下都是调用的原来几M大的原图,导致页面打开慢,而且原来DIY模块的图片因为调用原图也出现失真和变形。
解决方法:虽然不完美,但可以凑活用着。
Discuz远程附件 缩略图和裁切无法使用的解决方法具体如下:
找到文件:
/source/module/misc/misc_imgcropper.php
找到文件尾部:
- $image->Cropper($image->target, $cropfile, $cutwidth, $cutheight, $left, $top);
- showmessage('do_success', dreferer(), array('icurl' => $cropfile), array('showdialog' => true, 'closetime' => true));
复制代码
修改为:
- $image->Cropper($image->target, $cropfile, $cutwidth, $cutheight, $left, $top);
- //BEGIN
- //默认情况下,裁切图片只是保存在本地的,而由于block的更新代码,在判断缩略图标记为是的情况下是不更新到附件ftp上的;
- //这里,我们就需要在裁切保存以后,把图片更新到附件FTP上,裁切才会有效果;
- if ($_G['setting']['ftp']['on']) {
- $ftp = &discuz_ftp::instance();
- $ftp -> connect();
- if ($ftp -> connectid) {
- $ftp -> upload($_G['setting']['attachurl'].$cropfile, $cropfile);
- }
- }
- //END
- showmessage('do_success', dreferer(), array('icurl' => $cropfile), array('showdialog' => true, 'closetime' => true));
复制代码
上传覆盖就可以解决Discuz远程附件 缩略图和裁切无法使用的问题。
|
|