Jump to the post that solved this thread.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Solved: 11 Years, 9 Months, 3 Weeks ago Inline moderation
#1
Solved: 11 Years, 9 Months, 3 Weeks ago Exclamation 
When i select multiple threads, the | Go (0) | does not increase.

If i click on | Go (0) | then, i get this:

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

Any solutions?Confused

Greets, k1R@
#2
Solved: 11 Years, 9 Months, 3 Weeks ago
That might be an issue with cookies :
What are your cookie settings :
to find the settings read this topic : http://community.mybb.com/thread-126359.html
This might be the real cause of issue.

Also please check your templates for any jQuery conflict especially the header include template which is seen in your theme templates > ungrouped templates > headerinclude :

See for :
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>

change it to :
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script> 
below it so that conflict with prototype doesnt effect to this error.

Hope this helps,
regards
[Image: mnvhXxj.png]
#3
Solved: 11 Years, 9 Months, 3 Weeks ago
I don't even had this:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>

Anyway, i took the following code and did paste there:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script> 

Looks like this now:

<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" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<!-- Start VideoLightBox.com HEAD section -->
Etc...

Saved and still no difference.

And also the paths look fine for me, i also followed the explanation of your link and rewrote it.

Cookie Domain: .uniting-people.eu

Cookie Path: /forum/

Cookie Prefix: mybb_ (I have read this might help somehow)

Well, its still not working at all.. Sad
#4
Solved: 11 Years, 9 Months, 3 Weeks ago
can you post your headerinclude template code here, as well the link to your forum
regards
[Image: mnvhXxj.png]
#5
Solved: 11 Years, 9 Months, 3 Weeks ago
<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" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<!-- Start VideoLightBox.com HEAD section -->
        <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
        
            <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
            <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
            <script src="youtube_videolb/swfobject.js" type="text/javascript"></script
<!-- End VideoLightBox.com HEAD section -->{$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}

Forum url: www.uniting-people.eu/forum
#6
Solved: 11 Years, 9 Months, 3 Weeks ago
I think this code is affecting the thing.
the code is incomplete too :
remove this code and check whether it is functioning or not , i mean the inline mod.
<!-- Start VideoLightBox.com HEAD section -->
        <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
        
            <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
            <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
            <script src="youtube_videolb/swfobject.js" type="text/javascript"></script
<!-- End VideoLightBox.com HEAD section -->

This should solve the problem,
regards,

Also note that you have jQUery running twice.
Remove the first code
that means :
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>

And also you have jQuery Scroll to top which needs jQuery running, so let it only have the jQuery.

This would fix the problem Smile
regards
[Image: mnvhXxj.png]
#7
Solved: 11 Years, 9 Months, 3 Weeks ago
If i remove this code:

<!-- Start VideoLightBox.com HEAD section -->
        <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
        
            <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
            <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
            <script src="youtube_videolb/swfobject.js" type="text/javascript"></script
<!-- End VideoLightBox.com HEAD section -->

The template does not show up anymore.
You only have the white background with a mess of content.

My current code looks so now:

<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="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
 <script type="text/javascript">jQuery.noConflict();</script>
 <!-- Start VideoLightBox.com HEAD section -->
         <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
         
             <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
             <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
             <script src="youtube_videolb/swfobject.js" type="text/javascript"></script
 <!-- End VideoLightBox.com HEAD section -->{$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}

And still no difference.
#8
Solved: 11 Years, 9 Months, 3 Weeks ago
copy this code and replace the code in your template with this :

<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}

Also find in which template you have the Scroll to top code.
That loads jQuery and might be the trouble maker.
regards
[Image: mnvhXxj.png]
#9
Solved: 11 Years, 9 Months, 3 Weeks ago
Wow, finally.

Thank you a lot <3

Everything works fine now Smile
#10
Solved: 11 Years, 9 Months, 3 Weeks ago
Ha Ha , Glad it works Smile
next time whenever you install a plugin or script with jQuery , just check that no conflict occurs with prototype Smile.
Wish you good luck,
Regards,
[Image: mnvhXxj.png]
Jump to the post that solved this thread.


Forum Jump:


Users browsing this thread: 1 Guest(s)