近来伟大的GFW发威了,又把伟大的Gravatar拒之墙外,让我们这些微小的屁民们小小的头像不能显示了,看到这么多的屁民都急成这样,小百度研究了一下Gravatar 头像被墙解决办法如下:
找到/wp-includes/pluggable.php文件,把里面的代码:
if ( is_ssl() ) {
$host = ‘https://secure.gravatar.com’;
} else {
if ( !empty($email) )
$host = sprintf( “http://%d.gravatar.com”, ( hexdec( $email_hash{0} ) % 2 ) );
else
$host = ‘http://0.gravatar.com’;
}
改为:
if ( is_ssl() )
$host = ‘https://secure.gravatar.com’;
else $host = ‘http://www.gravatar.com’;
道理很简单:他妈的GFW技术员还有点愚蠢,他们墙了http://0.gravatar.com服务器,但www.gravatar.com还是在墙内的,所以这样就可以正常显示头像了。不知道这些GFW的SB们什么时候再把这个WWW的也墙了,咱们就只能用缓存技术了。
总算找到解决办法了
写的很是经典啊
呵呵 ,谢谢!