35dir无法显示缩略图怎么处理?今天有一网友购买了35dir源码,安装完整后发现缩略图不能正常显示,这让小编很纳闷,因为小编使用该35dir源码建的两个站缩略图都是可以正常显示的,那么35dir网站目录程序无法显示缩略图怎么办?35dir分类目录缩略图无法显示完美解决方法在这里:
搜索get_webthumb,找到以下代码:
/**thumbs*/
function get_webthumb($web_pic){
global$options;
if(!empty($web_pic)){
$strurl=$options['site_root'].$options['upload_dir'].'/'.$web_pic;
}else{
$strurl=$options['site_root'].'public/images/nopic.gif';
}
return$strurl;
}
/**thumbs*/function get_webthumb($web_pic,$web_url){
global$options;
if(!empty($web_pic)){
$strurl=$options['site_root'].$options['upload_dir'].'/'.$web_pic;
}else{
//在这里选择不同的缩略图服务网站。
//$strurl=$options['site_root'].'public/images/nopic.gif';
//$strurl='http://y.searchpreview.de/preview?s='.$web_url;
//$strurl='http://get.thumbshots.ru/?lang=en&size=s&url='.$web_url;
//$strurl='http://webthumb.jd-app.com/webthumb.php?url='.$web_url;
$strurl='http://api.webthumbnail.org/?width=160&height=100&screen=1024&url='.$web_url;}return$strurl;
}
2】打开文件source\module\website.php
搜索get_webthumb,找到$web['web_pic']=get_webthumb($web['web_pic']);【注:该文件中有两个get_webthumb,需要全部修改】
$row['web_pic']=get_webthumb($row['web_pic'],$row['web_url']);
3】打开文件module\siteinfo.php
替换成:$web['web_pic']=get_webthumb($web['web_pic'],$web['web_url']);
4】打开文件module\linkinfo.php
搜索get_webthumb,找到$link['web_pic']=get_webthumb($link['web_pic']);
$link['web_pic']=get_webthumb($link['web_pic'],$link['web_url']);
通过以上四步修改后即能完美地解决掉35dir分类目录无法显示网站缩略图问题。以上就是35dir分类目录无法显示网站缩略图的处理方法,文章转自善记事,纯粹个人存档学习,并无侵权等想法,如有异议,请联系网站管理员。