• 公告
  • 关于近期很多 Halo 搭建的博客收到恶意评论的通告。

如果你也收到了大量类似这样的评论:
Snipaste_2020-11-14_12-34-07.png

目前没有办法拦截,你可以去后台的博客设置中的评论设置关闭 API 评论开关:

不清楚对方处于什么目的,针对的到底是谁。但是有一点很清楚,那就是他一定需要被关爱。

给大家带来的困扰深感抱歉。

更新:

目前已经删除了 官网的用户墙论坛的用户墙收集贴Github issue 的站点示例,希望大家也不要再在这些地方留下你的站点地址。很显然,他针对的是我们。

我设置好以后一直报错500错误,未知错误!可能存在的原因:未正确设置主题或主题文件缺失。
我想设置主题,结果下载主题,然后压缩好再上传,结果又报错:无法准确定位到主题根目录,请确认主题目录中包含 theme.yml(theme.yaml)。请问这个怎么解决,而且我想赞助Halo社区,也没有看到赞助入口,方便的话,还请告知一下。

    Ryan Wang 👍 不是,是Anatole和Material,我都试过了,不可以使用。不知道是啥问题,我再看看别人的问题

      Ryan Wang 👍 好的,感谢,感谢,就是我每次运行都是有这个报错:
      WARNING: An illegal reflective access operation has occurred
      WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils (file:/C:/Users/Administrator/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.2.9.RELEASE/400a6fdb45bfa5318aa7d06360f4495b75080bb5/spring-core-5.2.9.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
      WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils
      WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
      WARNING: All illegal access operations will be denied in a future release

      不知道怎么解决。

        6 天 后
        1 个月 后

        前段时间也遇到了,每天大量的垃圾评论,后来直接用nginx屏蔽了,从此世界清静多了。
        原理:所有的垃圾评论中,UA都有"bilibili",nginx处理一下就ok(简单方式,目前还是可以的)
        if ($http_user_agent ~* "python-requests|Java|ApacheBench|Python-urllib*|HttpClient|Webbench|Scrapy|Bench|bilibili")
        {
        return 403;
        }

        4 个月 后