我在 Wamp 服务器上使用带有 Wordpress 3.6.1 的插件(WP Web Scraper)。但是当我在 Web 服务器(Go daddy Hosting)上尝试相同的配置时,它显示错误: Web Scraper 无法获取内容- 可能无法正常工作
有人能帮我吗..为什么它在本地服务器上运行而不是在 Godaddy 托管服务器上运行。
function wpws_debug() {
$url_content = wpws_get_content('http://google.com/','title','','on_error=error_show&cache=10&timeout=2');
if ( strpos($url_content,'Error ') !== false ) {
return 'Fatel error: WP Web Scraper could not fetch content - may not function properly';
} else {
return false;
}
}