昨天采集不了,研究下发现了问题。www.chuhoi.com的采集效果还是不错的
在supesite根目录下进入 admin 文件夹,找到admin_robots.php文件。
找到geturlfile函数:- function geturlfile($url, $encode=1) {
- global $thevalue, $_SCONFIG;
- $text = '';
- if(!empty($url)) {
- if(function_exists('file_get_contents')) {
- @$text = file_get_contents($url);
- } else {
- @$carr = file($url);
- if(!empty($carr) && is_array($carr)) {
- $text = implode('',$carr);
- }
- }
- }
- $text = str_replace('·', '', $text);
- if(!empty($thevalue['encode']) && $encode == 1) {
- if(function_exists('iconv')) {
- $text = iconv($thevalue['encode'], $_SCONFIG['charset'], $text);
- } else {
- $text = encodeconvert($thevalue['encode'], $text);
- }
- }
- return $text;
- }
复制代码 将此函数替换为:- function geturlfile($url, $encode=1) {
- global $thevalue, $_SCONFIG;
- $text = '';
- if(!empty($url)) {
- if(function_exists('file_get_contents')) {
- @$text = file_get_contents($url);
- } else {
- @$carr = file($url);
- if(!empty($carr) && is_array($carr)) {
- $text = implode('',$carr);
- }
- }
- }
-
- $text = str_replace('·', '', $text);
- if(function_exists('iconv')) {
- $text = iconv($thevalue['encode'], $_SCONFIG['charset'].'//IGNORE', $text);
- } else {
- $text = encodeconvert($thevalue['encode'], $text);
- }
- return $text;
- }
复制代码 多多支持ss啊。。。珠海视窗www.chuhoi.com 我们一起努力 |