MyBB Community Forums

Full Version: SQL error after update
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Another thing which I found after updating to MyBB 1.8.6

Somehow I get this error when I wanna enable MyBB build-in reputation system and then I click on a post in the forum

Thank you very much for any help
I can't find that query in the core using GitHub's search at all. Are you sure there aren't any plugins linked to reputation at all?
I used only SimpleLikes v2 from you (it is disabled and uninstalled) and Thank you/like system from -G33K- - now it is uninstalled too...

Nevermind, I get this error everytime when I wanna use any plugin related to reputation or posts (likes, thanks, whatever)... thx for oyur help

@Euan T. - please, is there any easy way how to find this "injected string" in MyBB core files? That must be an issue, maybe corrupted file during update
There is a conflict between note moderator plugin, open inc/plugin/notemoderator
on line 411 change
$pids = "nm.".$pids; 
to
$pids = $pids; 
and change line 415
$pids = "nm.pid='{$post['pid']}'"; 
to
$pids = "pid='{$post['pid']}'";