Jump to content

Open Coterie  ·  19 members

SMF Staff People

Error with Unread Posts


Snickerdoodle
 Share

Recommended Posts

Woo! The names are showing correctly! I'm so happy! Thank y'all so much for all the help!

 

Well, we made NPCs to test them out before we brought everyone else over to the new board and they didn't show in either of our lists of characters. Maybe it's the permissions thing, even though admin are supposed to have all permissions? I didn't know about that when we made them.

Link to comment
Share on other sites

Ticked the NPC box and marked them done, right?

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

What line?

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

Alright, so we're gonna look for this:

	$permissionGroups = array(

There are two sub-arrays here, 'simple' and 'classic' - both should have 'character_mng', as the last entry. If one doesn't, add it.

 

Next, a little bit down, we'll have something like this:

			'cmod_manage' => array(false, 'character_mng'),
			'cmod_app_bypass' => array(false, 'character_mng'),
			'cmod_create' => array(false, 'character_mng'),
			'cmod_create_npc' => array(false, 'character_mng'),
			'cmod_edit' => array(false, 'character_mng'),
			'cmod_edit_npc' => array(true, 'character_mng'),
			'cmod_post' => array(false, 'character_mng'),
			'cmod_post_npc' => array(true, 'character_mng'),
			'cmod_delete' => array(false, 'character_mng'),
			'cmod_delete_npc' => array(true, 'character_mng'),
			'cmod_journal_create' => array(false, 'character_mng'),
			'cmod_journal_edit' => array(true, 'character_mng'),
			'cmod_journal_hide' => array(true, 'character_mng'),
			'cmod_journal_see_hidden' => array(true, 'character_mng'),
			'cmod_journal_delete' => array(true, 'character_mng'),

It needs to look like this:

			'cmod_manage' => array(false, 'character_mng','character_mng'),
			'cmod_app_bypass' => array(false, 'character_mng','character_mng'),
			'cmod_create' => array(false, 'character_mng','character_mng'),
			'cmod_create_npc' => array(false, 'character_mng','character_mng'),
			'cmod_edit' => array(false, 'character_mng','character_mng'),
			'cmod_edit_npc' => array(true, 'character_mng','character_mng'),
			'cmod_post' => array(false, 'character_mng','character_mng'),
			'cmod_post_npc' => array(true, 'character_mng','character_mng'),
			'cmod_delete' => array(false, 'character_mng','character_mng'),
			'cmod_delete_npc' => array(true, 'character_mng','character_mng'),
			'cmod_journal_create' => array(false, 'character_mng','character_mng'),
			'cmod_journal_edit' => array(true, 'character_mng','character_mng'),
			'cmod_journal_hide' => array(true, 'character_mng','character_mng'),
			'cmod_journal_see_hidden' => array(true, 'character_mng','character_mng'),
			'cmod_journal_delete' => array(true, 'character_mng','character_mng'),

Let me know how that goes for you.

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

Copy-paste what you've got there for me, then.

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

'cmod_manage' => array(false, 'character_mng','character_mng'),
			'cmod_app_bypass' => array(false, 'character_mng','character_mng'),
			'cmod_create' => array(false, 'character_mng','character_mng'),
			'cmod_create_npc' => array(false, 'character_mng','character_mng'),
			'cmod_edit' => array(false, 'character_mng','character_mng'),
			'cmod_edit_npc' => array(true, 'character_mng','character_mng'),
			'cmod_post' => array(false, 'character_mng','character_mng'),
			'cmod_post_npc' => array(true, 'character_mng','character_mng'),
			'cmod_delete' => array(false, 'character_mng','character_mng'),
			'cmod_delete_npc' => array(true, 'character_mng','character_mng'),
			'cmod_journal_create' => array(false, 'character_mng','character_mng'),
			'cmod_journal_edit' => array(true, 'character_mng','character_mng'),
			'cmod_journal_hide' => array(true, 'character_mng','character_mng'),
			'cmod_journal_see_hidden' => array(true, 'character_mng','character_mng'),
			'cmod_journal_delete' => array(true, 'character_mng','character_mng'),

 

Link to comment
Share on other sites

Your $permissionGroups looks like this, right?

		'membergroup' => array(
			'simple' => array(
				'view_basic_info',
				'use_pm_system',
				'sp',
				'post_calendar',
				'edit_profile',
				'delete_account',
				'use_avatar',
				'moderate_general',
				'administrate',
				'character_mng',
			),
			'classic' => array(
				'general',
				'pm',
				'sp',
				'calendar',
				'maintenance',
				'member_admin',
				'profile',
				'character_mng',
			),
		),

 

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

A little bit different

		'membergroup' => array(
			'simple' => array(
				'view_basic_info',
				'use_pm_system',
				'sp',
				'post_calendar',
				'edit_profile',
				'delete_account',
				'use_avatar',
				'moderate_general',
				'administrate',
				'character_mng',
			),
			'classic' => array(
				'general',
				'pm',
				'sp',
				'calendar',
				'maintenance',
				'member_admin',
				'profile',
				'character_mng',

 

Link to comment
Share on other sites

Well, should be working fine then. There's probably something going sideways somewhere else causing it, because the code here is correct.

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

OH, I think I know what you mean.

Here's the thing, Simple display mode is bloody stupid, and the language strings it uses for it aren't actually the right ones. So the repeats you see are actually the separation between "own" thing and "any" thing, which separates properly and labels properly in Classic.

nusignature.png nusignature.png

I am the darkness, always watching, always listening, ALWAYS THERE.
(If you're interested in Plain of Ice, message me, it's private. Bleach site, non-canon.)

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use, Guidelines and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.