MyBB Community Forums

Full Version: Select All Moderation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
When I select all in the moderation it says I haven't selected any and also it always says I can't moderate because of a 1 hour inactivity period.
Can provide a test account that can moderate?
You can also PM me the login information.
Well I would but I can't log out or stay logged in the acp. I log in go to another page and I need to log in again.
(2011-06-04, 11:02 AM)StevenF50 Wrote: [ -> ]Well I would but I can't log out or stay logged in the acp. I log in go to another page and I need to log in again.

Then you need to fix your cookie settings first. Please check this sticky: http://community.mybb.com/thread-74904.html
This is stupid though, it's the fourth time I've changed it, it changes itself back to the old domain and it's really annoying me.
(2011-06-04, 11:10 AM)StevenF50 Wrote: [ -> ]This is stupid though, it's the fourth time I've changed it, it changes itself back to the old domain and it's really annoying me.

Check if your /inc/settings.php file has mode 666, if not chmod to 666 and check your settings again in ACP and resave them.
Thanks, changed permissions, making test account.
Can you find the following in the 'header_welcomeblock_member' template?
<a href="http://adstower.com" id="adLink1" target="_top">
<img src="http://www.adstower.com/ad.png" id="adBanner1" border="0" width="468" height="60">
</a>

Try to change it to:
<a href="http://adstower.com" id="adLink1" target="_top">
<img src="http://www.adstower.com/ad.png" id="adBanner1" border="0" width="468" height="60" />
</a>
Still doesn't work, here is the full code for header_welcomeblock_member:
<script type="text/javascript">
var imgs1 = new Array("http://www.adstower.com/ad.png","http://spambb.com/spam/images/1/logo.png","http://i.min.us/ilnKqE.png");
var lnks1 = new Array("http://adstower.com","http://spambb.com","http://everykick.proboards.com/index.cgi");
var alt1 = new Array("AdsTower","SpamBB -Friendly Discussion Forum","EveryKick Forum");
var currentAd1 = 0;
var imgCt1 = 3;
function cycle1() {
  if (currentAd1 == imgCt1) {
    currentAd1 = 0;
  }
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
  banner1.src=imgs1[currentAd1]
  banner1.alt=alt1[currentAd1]
  document.getElementById('adLink1').href=lnks1[currentAd1]
  currentAd1++;
}
  window.setInterval("cycle1()",1500);
</script><br>
<a href="http://adstower.com" id="adLink1" target="_top">
<img src="http://www.adstower.com/ad.png" id="adBanner1" border="0" width="468" height="60" />
</a>


	<span style="float:right;">{$lang->welcome_current_time}</span>
		{$lang->welcome_back} (<a href="{$mybb->settings['bburl']}/usercp.php"><strong>{$lang->welcome_usercp}</strong></a>{$modcplink}{$admincplink} &mdash; <a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a>)<br />
				<span class="links">
					<a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', 'buddyList', 350, 350);">{$lang->welcome_open_buddy_list}</a>
				</span>
				<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a> | <a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a> | <a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
Any javascript errors anywhere...?? When you select the threads, does the number on the Go button increase or does it stay at 0??
Pages: 1 2 3