MediaWiki 反机器人编码
我想修改 MediaWiki 对用户注册的处理以添加反机器人检查。
看起来 includes/SpecialUserlogin.php
文件中的 addNewAccountInternal()
方法是执行此操作的正确位置。
问题是我在该文件中所做的任何更改似乎都没有任何区别。甚至不删除该文件。我没有在服务器中安装任何类型的缓存。
我已经在 includes/templates/Userlogin.php
文件中编写了客户端 JavaScript 代码,并且它按预期工作。
我缺少什么?
I want to modify MediaWiki handling of user registration to add an anti bot check.
It looks like the addNewAccountInternal()
method in the includes/SpecialUserlogin.php
file is the right place to do it.
The problem is that nothing I change in that file seems to make any difference. Not even removing that file. I didn't install any kind of cache in the server.
I have already written the client side JavaScript code in the includes/templates/Userlogin.php
file and it works as expected.
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相同的文件存在于
includes/specials
中,并且修改起作用。The same file exists in
includes/specials
and there the modifications work.