PS: Typechp 1.1 开发板可直接在配置文件中定义头像源 附:使用方法

在国内写个博客就是这么难,叹。
前些日子 Google 再次被屏蔽,给我们带来了很大的不便。
这回轮到全球通用头像 Gravatar 的服务器被屏蔽了。
好久没进过博客了,昨天进留言板一看:偶们都是无头骑士。这玩意到底招谁惹谁了 = =
Gravatar头像被墙之后,Typecho头像就显示不出来了
解决方案如下:

找到/var/Widget/Abstract 下的 Comments.php 文件,将390行的gravatar函数换成下面的:

public function gravatar($size = 32, $default = NULL)
    {
        if ($this->options->commentsAvatar && 'comment' == $this->type) {
            $rating = $this->options->commentsAvatarRating;
            $this->pluginHandle(__CLASS__)->trigger($plugged)->gravatar($size, $rating, $default, $this);
            if (!$plugged) {
                //$url = Typecho_Common::gravatarUrl($this->mail, $size, $rating, $default, $this->request->isSecure());
                $mailHash = NULL;
                if (!empty($this->mail)) {
                $mailHash = md5(strtolower($this->mail));
                }
                $url = 'https://secure.gravatar.com/avatar/';
                if (!empty($this->mail)) {$url .= $mailHash;}
                $url .= '?s=' . $size;
                $url .= '&r=' . $rating;
                $url .= '&d=' . $default;
                echo '<img class="avatar" src="' . $url . '" alt="' .
                $this->author . '" width="' . $size . '" height="' . $size . '" />';
            }
        }
    }

好了,代码改好保存上传至服务器,然后再刷新下网页,久违的头像们是不是又回来了~