1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
有缩略图显示本地 没有缩略图调用爱站修改方法 需要修改四个文件 请注意备份! 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= 'http://www.aizhan.com/ajaxAction/webthumb.php?domain='.$web_url; } return $strurl; } 2.打开文件 source\module\website.php 搜索get_webthumb 找到 $web['web_pic'] = get_webthumb($web['web_pic']); 需要替换两次 全部替换成 $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有缩略图显示本地,没有缩略图调用爱站修改方法