MyBB Community Forums

Full Version: Inline mod not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
alright! so I have an issue when trying to use inline moderation. When you try to delete posts in a thread or when you try to move several threads or sticky them or something I get this issue

"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."


tried to post the coding annnnd it freaked out on me LOL so here are some screenies of the coding in postbit and postbit_classic. they are the same so no matter which setting they are on it shows the same post set up

http://i45.tinypic.com/1fbym9.png
http://i50.tinypic.com/a85tf.png
(2013-03-09, 01:50 AM)Tempest Wrote: [ -> ]alright! so I have an issue when trying to use inline moderation. When you try to delete posts in a thread or when you try to move several threads or sticky them or something I get this issue

"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."


tried to post the coding annnnd it freaked out on me LOL so here are some screenies of the coding in postbit and postbit_classic. they are the same so no matter which setting they are on it shows the same post set up

http://i45.tinypic.com/1fbym9.png
http://i50.tinypic.com/a85tf.png

I just had this problem when I selected threads, went to another page, came back, saw that the threads I wanted to approve were still checked, and selected approve threads. I just tried it again and it works. Did you try it again?
Yes, several different admins have tried it and its doing the same thing for everyone D:
Please try the following tutorial and see if it works:

http://community.mybb.com/thread-135747.html
I don't think we have any added scripts. D: Are there any other suggestions for what might be wrong? Should I screenie a different template?
bump, still have not been able to fix this issue =/
Will you be kind enough to post your headerinclude template here?
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$stylesheets}
<script type="text/javascript">
<!--
	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}

<!-- start mango's menu -->

		<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.js"></script>
		<script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.easing.1.3.js"></script>
		<script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.hoverIntent.minified.js"></script>
		<script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.naviDropDown.1.0.js"></script>



<script type="text/javascript">
			$(function() {

				$('#navigation_horiz').naviDropDown({
					dropDownWidth : '160px'
				});

				$('#navigation_vert').naviDropDown({
					dropDownWidth : '160px',
					orientation : 'vertical'
				});
			});
</script>

<!-- end mango's menu -->
jQ conflict, as expected.

Replace it with this please:
{$stylesheets}
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
<script type="text/javascript">
<!--
    var cookieDomain = "{$mybb->settings['cookiedomain']}";
    var cookiePath = "{$mybb->settings['cookiepath']}";
    var cookiePrefix = "{$mybb->settings['cookieprefix']}";
    var deleteevent_confirm = "{$lang->deleteevent_confirm}";
    var removeattach_confirm = "{$lang->removeattach_confirm}";
    var loading_text = '{$lang->ajax_loading}';
    var saving_changes = '{$lang->saving_changes}';
    var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
    var my_post_key = "{$mybb->post_code}";
    var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}

<!-- start mango's menu -->

        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.js"></script>
        <script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.easing.1.3.js"></script>
        <script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.hoverIntent.minified.js"></script>
        <script type="text/javascript" src="http://www.akrasia-rpg.com/js/jquery.naviDropDown.1.0.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>


<script type="text/javascript">
            $(function() {

                $('#navigation_horiz').naviDropDown({
                    dropDownWidth : '160px'
                });

                $('#navigation_vert').naviDropDown({
                    dropDownWidth : '160px',
                    orientation : 'vertical'
                });
            });
</script>

<!-- end mango's menu -->
okay so I replaced it and now the drop down menu is like, stuck down now instead of being on hover? http://akrasia-rpg.com/index.php but inline mod is working again
Pages: 1 2