MyBB Community Forums

Full Version: Inline Moderation Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When attempting to moderate a thread, I receive the error:
Sorry, but you did not select any threads to perform inline moderation on, or your previous moderation session has expired (Automatically after 1 hour of inactivity). Please select some threads and try again.

In accordance with all the suggestions online I checked the source and the template file for the current theme, and they both include /jscripts/inline_moderation.js with correct syntax.

Site is: http://arflux-rpg.com/forum/

I am, by the way, an admin, I am updated to 1.6, and logged in.

EDIT:
This is probably a Javascript issue, given that the number doesn't update next to the go button on inline moderation.
jQuery is breaking MyBB's JavaScripts, which you are using for the news feed in the bottom. You need to use noConflict() in your scripts in order to use Prototype and jQuery simultaneously.

Where you have this script:

$(document).ready(function () {
	$('#ticker1').rssfeed('http://arflux-rpg.com/forum/syndication.php').ajaxStop(function() {
		$('#ticker1 div.rssBody').vTicker({ showItems: 2});
	});

	$('#ticker2').rssfeed('http://arflux-rpg.com/blog?feed=rss2').ajaxStop(function() {
		$('#ticker2 div.rssBody').vTicker({ showItems: 2});
	});
});

It actually needs to be:

jQuery.noConflict();
jQuery(document).ready(function($) {
	$('#ticker1').rssfeed('http://arflux-rpg.com/forum/syndication.php').ajaxStop(function() {
		$('#ticker1 div.rssBody').vTicker({ showItems: 2});
	});

	$('#ticker2').rssfeed('http://arflux-rpg.com/blog?feed=rss2').ajaxStop(function() {
		$('#ticker2 div.rssBody').vTicker({ showItems: 2});
	});
});
Thanks for the fix, but now my jQuery script isn't working Sad
EDIT:
Experimenting now with the API.
EDIT2:
aaaaaaaaand still nothing.
I've tried every combination on the page, and I can only think that I am implementing the different methods wrong somehow. Care to shed some light on my situation?