MyBB Community Forums

Full Version: Permissions!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I've been using mybb since march 2009, AND IT'S GREAT!
But, I got a new theme and even ever i try to use the
"Moderation Options: " feature is gives me this error :
You do not have permission to access this page. This could be because of one of the following reasons:

1. Your account has either been suspended or you have been banned from accessing this resource.
2. You do not have permission to access this page. Are you trying to access administrative pages or a resource that you shouldn't be? Check in the forum rules that you are allowed to perform this action.
3. Your account may still be awaiting activation or moderation. (Resend Activation Code)


You are currently logged in with the username: 'kc'
I've checked my permissions, and I've changed the theme so I can see if this happens on all themes I changed it to the default When I'm on the default one, It works fine.

What's the theme's problem?
PS: the theme I'm using is: FreshBlue_mybb_1.4
My url is http://www.pandasoft.info .
Many thanks to all that help Big Grin.
I think you need to change the permission settings in ACP.
(2009-08-05, 06:17 AM)Pingo Wrote: [ -> ]I think you need to change the permission settings in ACP.

Read it carefully, I've said that, I've checked my permissions, the permissions are fine, i tryed the default theme, and the moderator options work, it's just the theme.
Goto your AdminCP --> Templates & Styles --> Your Theme Templates --> Show Thread Templates --> showthread_moderationoptions (Choose revert on the dropdown beside it).
(2009-08-05, 07:02 AM)Polarbear541 Wrote: [ -> ]Goto your AdminCP --> Templates & Styles --> Your Theme Templates --> Show Thread Templates --> showthread_moderationoptions (Choose revert on the dropdown beside it).
{$inlinemod}
<form action="moderation.php" method="get" style="margin-top: 0; margin-bottom: 0;">
	<input type="hidden" name="modtype" value="thread" />
	<input type="hidden" name="tid" value="{$tid}" />
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<span class="smalltext">
	<strong>{$lang->moderation_options}</strong></span>
	<select name="action" onchange="window.location=('moderation.php?action='+this.options[this.selectedIndex].value+'&amp;tid={$tid}&amp;modtype=thread&amp;my_post_key={$mybb->post_code}')">
		<optgroup label="{$lang->standard_mod_tools}">
			<option value="threadnotes">{$lang->thread_notes}</option>
			<option value="openclosethread">{$lang->open_close_thread}</option>
			<option value="deletethread">{$lang->delete_thread}</option>
			{$adminpolloptions}
			<option value="deleteposts">{$lang->delete_posts}</option>
			<option value="move">{$lang->move_thread}</option>
			<option value="stick">{$lang->stick_unstick_thread}</option>
			<option value="split">{$lang->split_thread}</option>
			<option value="merge">{$lang->merge_threads}</option>
			<option value="mergeposts">{$lang->merge_posts}</option>
			<option value="removeredirects">{$lang->remove_redirects}</option>
			<option value="removesubscriptions">{$lang->remove_subscriptions}</option>
			{$approveunapprovethread}
		</optgroup>
		{$customthreadtools}
	</select>
	{$gobutton}
</form>
<br />
i got that, but i mean, when i pick an option, it gives me that page, I can give you a test account if you want, and make you mod or admin on it, so you can test it your self?
That template isn't default either choose 'Revert to Original' or replace it with this:

{$inlinemod}
<form action="moderation.php" method="post" style="margin-top: 0; margin-bottom: 0;" id="moderator_options">
	<input type="hidden" name="modtype" value="thread" />
	<input type="hidden" name="tid" value="{$tid}" />
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<span class="smalltext">
	<strong>{$lang->moderation_options}</strong></span>
	<select name="action" onchange="$('moderator_options').submit();">
		<optgroup label="{$lang->standard_mod_tools}">
			<option value="threadnotes">{$lang->thread_notes}</option>
			<option value="openclosethread">{$lang->open_close_thread}</option>
			<option value="deletethread">{$lang->delete_thread}</option>
			{$adminpolloptions}
			<option value="deleteposts">{$lang->delete_posts}</option>
			<option value="move">{$lang->move_thread}</option>
			<option value="stick">{$lang->stick_unstick_thread}</option>
			<option value="split">{$lang->split_thread}</option>
			<option value="merge">{$lang->merge_threads}</option>
			<option value="mergeposts">{$lang->merge_posts}</option>
			<option value="removeredirects">{$lang->remove_redirects}</option>
			<option value="removesubscriptions">{$lang->remove_subscriptions}</option>
			{$approveunapprovethread}
		</optgroup>
		{$customthreadtools}
	</select>
	{$gobutton}
</form>
<br />
OH WOW! Thanks Man!, Mybb is the best forum software!
Just so you know, you should have done this for an update a few months ago...