您好!欢迎访问95网站大全,本站是一个免费收录网站的网址导航/网站大全/网站导航网!
95网站大全|网址导航|网站导航手机站LOGO
95网站大全网数据统计:网站有825个主题分类,收集了55206个网站,7604篇文章资讯
当前位置:95网站大全 » 文章资讯 » 网站建设 » 文章详细
35dir程序无法显示缩略图处理
 
发布时间:2019-08-02 来源:网络转载 浏览:3036次

  35dir无法显示缩略图怎么处理?今天有一网友购买了35dir源码,安装完整后发现缩略图不能正常显示,这让小编很纳闷,因为小编使用该35dir源码建的两个站缩略图都是可以正常显示的,那么35dir网站目录程序无法显示缩略图怎么办?35dir分类目录缩略图无法显示完美解决方法在这里:


  1】打开文件source\module\prelink.php
  搜索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


  搜索get_webthumb,找到$web['web_pic']=get_webthumb($web['web_pic']);

  替换成:$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分类目录无法显示网站缩略图的处理方法,文章转自善记事,纯粹个人存档学习,并无侵权等想法,如有异议,请联系网站管理员。

  • ┃ 标签: 35dir无法显示缩略图
  • ┃ 特别说明: "35dir程序无法显示缩略图处理"来源于会员文章资讯或网络转载,并不代表95网站大全的观点,如有疑问,敬请联系我们,我们将在第一时间予以审查或更改。同时欢迎分享本文,转载请保留出处!
  • 上一篇: 处理35dir会员注册时验证码不显示
  • 下一篇: 文学网站大全:专业收集优秀的文学网站
  • ┃ 推荐资讯
    ┃ 今日新闻投稿
    ┃ 最新收录

     返回顶部