search
HomeBackend DevelopmentPHP Tutorialdiscuz插件的事,我又跑到csdn来问,相信组织的力量!

这个插件呢,是仿贴吧的,在帖子列表显示缩略图,是我很喜欢的一种风格,适用于X3.0,但是为了客户端,我只能用X2.5版本,这个插件在X2.5不工作,无法生成缩略图我就是想改一改代码,让其在X2.5环境下工作,自用,不商用。
在X3.0下,是能生成一个存放缩略图的文件夹,里面存放有缩略图。但是在2.5下,没有发现这个文件夹,所以感觉在build这一步出了问题。
下面贴出thumbbuilder.class.php这个文件的代码,请高手分析一下,为什么没有在data/attachment/下生成tiebalist这个文件夹。

<?phpif(!defined('IN_DISCUZ')) {    exit('Access Denied');}if (!class_exists('PhpThumbFactory',false)) require_once('source/plugin/chs_tiebalist/phpthumb/ThumbLib.inc.php');class ThumbBuilder {    private $basedir;	private $baseurl;    public function __construct(){        global $_G;		$this->basedir=!$_G['setting']['attachdir'] ? (DISCUZ_ROOT.'data/attachment/'):$_G['setting']['attachdir'];		$this->baseurl=!$_G['setting']['attachurl'] ? ('data/attachment/'):$_G['setting']['attachurl'];    }    private function getCoverPath($tid){        return 'tiebalist/'.substr(md5($tid), 0, 2).'/'.substr(md5($tid), 2, 2).'/';    }    public function GetThreadCovers($tid,$aids){        $coverpath=$this->getCoverPath($tid);        $fullpath=$this->basedir.$coverpath;        $fullurl=$this->baseurl.$coverpath;        $images=array();        foreach($aids as $aid){            if (file_exists($fullpath.$aid.'.jpg')) $images[]=array('aid'=>$aid,'thumbfile'=>$fullurl.$aid.'.jpg');          }        return $images;    }    public function CreateThreadCovers($tid,$images,$force=0){        $path=$this->basedir.$this->getCoverPath($tid);		dmkdir($path);        global $_G;        $setting=&$_G['cache']['plugin']['chs_tiebalist'];        $thumbheight=$setting['thumbheight']?$setting['thumbheight']:80;        $thumbmaxwidth=$setting['thumbmaxwidth']?$setting['thumbmaxwidth']:300;        foreach($images as $aid=>$image){            $target=$path.$aid.'.jpg';            if (file_exists($target)&&(!$force)) continue;            try {				$thumb = PhpThumbFactory::create($image,array('resizeUp'=>true));                $dimensions=$thumb->getCurrentDimensions();                $newwidth=$thumbheight*$dimensions['width']/$dimensions['height'];                if ($newwidth>$thumbmaxwidth) {                    $thumb->adaptiveResize($thumbmaxwidth,$thumbheight);                }else {                    $thumb->resize(0,$thumbheight);//封面不限定宽度                }				$thumb->save($target);			}catch(Exception $oEx){//捕获生成缩略图可能抛出的异常,防止中断                writelog('tiebalistlog',$oEx->getMessage());				continue;			}        }        if ($force) {            $thumbfiles=$this->getfiles($path,'jpg');            $aids=array_keys($images);            foreach($thumbfiles as $filename){                $aid=intval(substr($filename,0,strpos($filename,'.')));                if (!in_array($aid,$aids)) unlink($path.$filename);            }        }    }        private function getfiles($dir,$mask=''){         $fileArray=array();         if (false != ($handle = opendir ($dir))) {            while (false!==($file=readdir($handle))){                if ($file == '.' || $file == '..') continue;                if (empty($mask)) $fileArray[]=$file;                else if (substr(strrchr($file, '.'), 1)==$mask) $fileArray[]=$file;            }          }         return $fileArray;    }}?>


回复讨论(解决方案)

buildthumb.inc.php内的内容,好像也有用处呢

<?phpif(!defined('IN_DISCUZ')) {    exit('Access Denied');}class plugin_chs_tiebalist {       function common() {}}class plugin_chs_tiebalist_forum extends plugin_chs_tiebalist {     function forumdisplay_thread_subject_output(){           global $_G;        $setting=&$_G['cache']['plugin']['chs_tiebalist'];        if (!$setting['enabled']) return;        $fid = intval($_G['fid']);        $forumselected=unserialize($setting['forumselected']);        if(!in_array($fid,$forumselected)) return;                if ($_G['forum']['picstyle'] == 0||$_G['cookie']['forumdefstyle']==1){            global $_G;            $threadlist = array();            $threadlist = $_G['forum_threadlist'];            $tiebalist = array();            $messagelength=$setting['messagelength']?$setting['messagelength']:100;            $picturenum=$setting['$picturenum']?$setting['$picturenum']:3;            include libfile('function/post');            require_once('thumbbuilder.class.php');            $oTB=new ThumbBuilder();            foreach($threadlist as $key => $value){                $position=($value['special']==2)?2:1;//商品主题的首帖在第二楼,回复从第3楼开始                $firstpost=C::t('forum_post')->fetch_all_by_tid_position('tid:'.$value['tid'],$value['tid'],$position);                if (count($firstpost)>0&&$firstpost[0]['invisible']>=0){                    $post=&$firstpost[0];                    $message=messagecutstr($post['message'],$messagelength);                    $tiebalist[$key] = '<p>'.$message.'</p>';                    $attachs=C::t('forum_attachment_n')->fetch_all_by_id('pid:'.$post['pid'],'pid',$post['pid'],false,true,false,false,$picturenum);                    $aids=array_keys($attachs);                    if ($aids){                        $imagelist=$oTB->GetThreadCovers($value['tid'],$aids);                        if (count($imagelist)>0) {                            $tiebalist[$key].='<ul id="thumblist_'.$value['tid'].'" class="thumblist cl">';                            foreach($imagelist as $ii=>$image){                                $attach=$attachs[$image['aid']];                                $forumimg=($attach['remote'] ? $_G['setting']['ftp']['attachurl'] : $_G['setting']['attachurl']).'forum/'.$attach['attachment'];                                $tiebalist[$key].='<li data="'.$forumimg.'" onclick="showpicture('.$value['tid'].','.$ii.');return false;"><img  src="/static/imghwm/default1.png"  data-src="'.$image['thumbfile'].'"  class="lazy"  .$image['thumbfile'].'"/ alt="discuz插件的事,我又跑到csdn来问,相信组织的力量!" ></li>';                            }                            $tiebalist[$key].='</ul>';                            $tiebalist[$key].=                            '<div id="picturebox_'.$value['tid'].'" class="picturedisplay"   style="max-width:90%">                                <div class="picturecontrol">                                    <a class="icon_close" onclick="closepicture('.$value['tid'].');return false;">收起</a>                                    <span>|</span>                                    <a class="icon_viewpost" href="forum.php?mod=viewthread&tid='.$value['tid'].'&extra=page%3D1">查看帖子</a>                                    <span>|</span>                                    <a class="icon_turnleft" onclick="turnimg('.$value['tid'].',1);return false;">左转</a>                                    <span>|</span>                                    <a class="icon_turnright" onclick="turnimg('.$value['tid'].',0);return false;">右转</a>                                </div>                                <div class="picturewrap" >                                    <a onclick="closepicture('.$value['tid'].');return false;"><img  class="picture lazy"  src="/static/imghwm/default1.png"  data-src="" / alt="discuz插件的事,我又跑到csdn来问,相信组织的力量!" ></a>                                    <div class="    /></a>                                    <div ></div>                                    <div class="gonext"></div>                                </div>                            </div>';                          }                    }                }            }            return $tiebalist;        }    }    function  forumdisplay_threadlist_bottom() {		global $_G;        $setting=&$_G['cache']['plugin']['chs_tiebalist'];        if (!$setting['enabled']) return;        $fid = intval($_G['fid']);        $forumselected=unserialize($setting['forumselected']);        if(!in_array($fid,$forumselected)) return;		$echo = '<link rel="stylesheet" type="text/css" href="source/plugin/chs_tiebalist/template/css/tiebalist.css" />';		$echo .= '<script src="source/plugin/chs_tiebalist/template/js/tiebalist.js"  type="text/javascript"></script>';        $picturemaxwidth=$setting['picturemaxwidth']?$setting['picturemaxwidth']:600;        $echo .='<script type="text/javascript">var picturemaxwidth='.$picturemaxwidth.';</script>';		return $echo;	}    function post_chs_tiebalist_message($params) {		global $_G, $tid, $pid, $modthread, $isfirstpost;        $setting=&$_G['cache']['plugin']['chs_tiebalist'];        if (!$setting['enabled']) return;        $fid = intval($_G['fid']);        $forumselected=unserialize($setting['forumselected']);        if(!in_array($fid,$forumselected)) return;		list($msg, $url_forward, $values, $extraparam) = $params['param'];		if (($msg == 'post_newthread_succeed')||($msg == 'post_newthread_mod_succeed')) {			$pid = $modthread->pid;			$this->create_covers($pid,$tid);			dshowmessage($msg, $url_forward, $values, $extraparam);		}else if (($msg == 'post_edit_succeed')&&$isfirstpost) {			$tid=$_G['tid'];			$this->create_covers($pid,$tid);			dshowmessage($msg, $url_forward, $values, $extraparam);		}    }    private function create_covers($pid,$tid){		global $_G;        $setting=&$_G['cache']['plugin']['chs_tiebalist'];        $picturenum=$setting['$picturenum']?$setting['$picturenum']:3;		//获取帖子的图片		$attachs=C::t('forum_attachment_n')->fetch_all_by_id('pid:'.$pid,'pid',$pid,false,true,false,false,$picturenum);		$images=array();		foreach($attachs as $attach){			$images[$attach['aid']]=($attach['remote'] ? $_G['setting']['ftp']['attachdir'] : $_G['setting']['attachdir']).'forum/'.$attach['attachment'];		}		if ($images){			require_once("thumbbuilder.class.php");			$oTB=new ThumbBuilder();			$oTB->CreateThreadCovers($tid,$images);		}	}}?>

这个你找原插件作者去瞅瞅吧!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
atom中 40+ 个常用插件推荐分享(附插件安装方法)atom中 40+ 个常用插件推荐分享(附插件安装方法)Dec 20, 2021 pm 04:14 PM

本篇文章给大家分享40+ 个atom常用插件,并附上在atom中安装插件的方法,希望对大家有所帮助!

五个IntelliJ IDEA插件,高效编写代码五个IntelliJ IDEA插件,高效编写代码Jul 16, 2023 am 08:03 AM

人工智能AI是当前广受认可的未来趋势和发展方向。虽然有些人担心AI可能会取代所有的工作,但实际上只会取代那些重复性高、产出低的工作。因此,我们应该学会更加聪明地工作,而不是使劲努力地工作。本文介绍5个由AI驱动的Intellij插件,这些插件可以帮助你提高生产力,减少繁琐的重复性工作,让你的工作更加高效、便捷。1GithubCopilotGithubCopilot是由OpenAI和GitHub联合开发的一款人工智能代码辅助工具。它使用了OpenAI的GPT模型来分析代码上下文,预测并生成新的代码

vscode插件分享: 6个Vue3开发必备插件vscode插件分享: 6个Vue3开发必备插件Dec 09, 2022 pm 08:36 PM

本篇文章给大家整理分享 6 个 Vue3 开发必备的 VSCode 插件,可以直接用过 VSCode 的插件中心直接安装使用,希望对大家有所帮助!

用 VSCode 写 Python,这14个插件不容错过!用 VSCode 写 Python,这14个插件不容错过!May 24, 2023 pm 05:19 PM

可以说,VisualStudioCode这个编辑器,让微软在开源社区赢回了王者段位,要知道全球2400万开发者中有1400万称VSCode为自己的家,再加上GitHub和VSCode的结合,几乎所有的程序员的都离不开VSCode,不过,VSCode如此优秀,值得每个程序员使用,甚至我觉得非程序员都可以用它来码字。如果你还没用过VSCode,那访问这里安装[1]一个吧,很可能就打开了一个新世界。今天分享14个非常实用VSCode插件,可以让你写代码如同神一般,尤其是

2023年最新最全的VScode插件推荐2023年最新最全的VScode插件推荐Jan 24, 2023 am 05:30 AM

这篇文章主要介绍了这么多年来我在使用 VSCode 过程中用到的一些不错的插件。这些VSCode插件,帮你打造地表最强IDE!

【吐血总结】23个VSCode 插件,助你提高开发效率和美观性【吐血总结】23个VSCode 插件,助你提高开发效率和美观性Mar 10, 2022 pm 08:01 PM

本篇文章给大家总结了23个各种功能的VSCode 插件,可以帮助开发者提高开发效率和美观性,希望对大家有所帮助!

如虎添翼,六个让你效率翻倍的ChatGPT插件如虎添翼,六个让你效率翻倍的ChatGPT插件May 17, 2023 pm 02:28 PM

ChatGPT是一个超强的AI应用程序,OpenAI已经发布的GPT-4引起了更广泛的关注。ChatGPT是由OpenAI开发的专门从事对话的AI聊天机器人,其主要目标是使AI系统更自然地进行互动。大家可能都已经尝试过ChatGPT,今天讲一讲与这个全新工具互动的不同方法。本文总结了6个可以使ChatGPT成为日常助手(甚至超越日常助手)的工具!1.【GoogleChromeExtension】在任何地方使用ChatGPT想在任何地方轻松地使用ChatGPT吗?那么你可以使用Chrome插件(h

canvas插件有哪些canvas插件有哪些Aug 17, 2023 pm 05:00 PM

canvas插件有Fabric.js、EaselJS、Konva.js、Three.js、Paper.js、Chart.js和Phaser。详细介绍:1、Fabric.js 是一个基于Canvas的开源 JavaScript 库,它提供了一些强大的功能;2、EaselJS是CreateJS库中的一个模块,它提供了一套简化了Canvas编程的API;3、Konva.js等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)