BlackWhite

Results 8 comments of BlackWhite

The library seems to be installed via github So the failure to install may be due to lack of access to github. Consider setting up a proxy to install

关于文章里面https://sunhwee.com/posts/ca189e3a.html 的一个bug。 hexo-blog-encrypt 密码正确但是提示输入错误解决方法。 在\node_modules\hexo-blog-encrypt\template.html 中添加 ```js ``` 即可 同时如果想全局修改密码输入提示的文字,可以在下面修改。以下是我,可以参考。 ```js {{message}} 密码错误或已被更改! 没有要显示的内容! {{content}} ``` 相关文章:https://blog.csdn.net/cy012/article/details/88742757 我的博客:www.bwxyz.top 哈哈 厚颜无耻的宣传一下

Have you solved it? > Is it possible to modify...? Or do I need to take some kind of approach here? I'm sorry for repeating myself. Thank you very much.

> 这在[63d8cc6](https://github.com/thaider/Tweeki/commit/63d8cc6bed42aff13f905a07a93e7f2272db1468)中有效,但从那以后似乎已经[坏](https://github.com/thaider/Tweeki/commit/63d8cc6bed42aff13f905a07a93e7f2272db1468)了。 Hi, is there a solution? I am using mediawiki 1.35

> I couldn't solve the problem, so I used css to hide it. The version is Mediawiki 1.35.1. Okay, but this plugin does work very well. It enhances team collaboration....

> 自己改一下代码就行了, SocialProfile的头像命名规律在官方文档里有提到:维基前缀_用户ID_[l或m或s](如testwiki_1_l)如下图:。 ![image](https://user-images.githubusercontent.com/61773351/142758210-15e0a209-bb52-4c77-936c-338d091cc669.png) > > 本插件的头像获取函数在./assets/common.js中,如下: `function getAvatar(id, username) { if (id === 0) { return config.AnonymousAvatar; } else { return config.Avatar.replace(/\$\{username\}/g, username); } }` id就是获取的用户id,config.AnonymousAvatar就是从你Localsettings里设置的头像url。 因此,只需要将else后的return值改一下就行,改成: `return config.Avatar+"你的维基前缀,可以去SocialProfile头像保存目录查看_"+id+"_l.png"`...

我在解决文件格式和默认头像时候遇到了头像不重定向问题,最后终于解决了。 在这里备注下以方便后面跟我遇到一样问题的人。 因为我使用的伪静态 ```nginx location ~ ^\/.+$ { if ($request_uri ~ ^/images) { break; } if ($request_uri ~ ^/resources) { break; } if ($request_uri ~ ^/index\.php) { break; } rewrite...

> > 上传较大文件时,矩形的外边框已经填充满了,但是实际上还需要等一段时间才能弹出取件码窗口 > > ![Image](https://github.com/user-attachments/assets/11296389-1aa9-4d69-af5f-e107841af5c4) > > 服务器处理文件还需要时间 服务器处理文件能输出进度吗?这个时候我总以为是卡住了,因为没有反馈。 或者提供一个加载界面?