VBulletin:在 BBCode 内搜索
目标:在 vB 搜索结果中,当用户名是搜索关键字时,包含“引用”该用户的帖子。
在帖子正文中,它看起来像 [QUOTE="username"] 并且 vB 似乎没有在 BB 代码内搜索。
我怎样才能做到这一点?
谢谢
Goal: In vB search results, to include posts that "quotes" the user when that user name is search keyword.
In a post body, it looks like [QUOTE="username"] and vB seems not searching inside the BB code.
How can I do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 vBulletin 按用户名进行搜索时,它最终会执行如下所示的数据库查询:
找到该查询(位于 search.php 中)并将其更改为如下所示:
您可能需要进行大量调整和测试才能获得它是的,但这应该会让您更接近解决方案。
注意:请务必清理用户名。用户名直接插入 SQL 是不安全的!
When vBulletin does a search by username, it ends up doing a database query like this:
Find that query (it's in search.php) and change it to something like this:
You'll probably need a bunch of tweaks and testing to get it right, but that should get you closer to a solution.
N.B. Be sure to sanitize the username. Usernames are not safe to insert into SQL directly!