Code: Select all
tags.
Not the [quote]here's the tweaked part of "adm/style/acp_users.html" [/quote]. It seems that your problem lies in either of these files.
One other question..Do you have any Special ranks defined within your ACP? If you don't have any Special Ranks defined, this mod won't work. ;)
Code: Select all
<fieldset>
<legend>{L_ACP_USER_RANK}</legend>
<dl>
<dt><label for="user_rank">{L_USER_RANK}:</label></dt>
<dd><select name="user_rank" id="user_rank">{S_RANK_OPTIONS}</select></dd>
<dt><label for="user_rank2">User rank 2:</label></dt>
<dd><select name="user_rank2" id="user_rank2">{S_RANK2_OPTIONS}</select></dd>
<dt><label for="user_rank3">User rank 3:</label></dt>
<dd><select name="user_rank3" id="user_rank3">{S_RANK3_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="user_rank">{L_USER_RANK}:</label></dt>
<dd><select name="user_rank" id="user_rank">{S_RANK_OPTIONS}</select></dd>
<dt><label for="user_rank2">User rank 2:</label></dt>
<dd><select name="user_rank2" id="user_rank2">{S_RANK2_OPTIONS}</select></dd>
<dt><label for="user_rank3">User rank 3:</label></dt>
<dd><select name="user_rank3" id="user_rank3">{S_RANK3_OPTIONS}</select></dd>
</dl>
</fieldset>
Code: Select all
<fieldset>
<legend>{L_ACP_USER_RANK}</legend>
<dl>
<dt><label for="user_rank">{L_USER_RANK}:</label></dt>
<dd><select name="user_rank" id="user_rank">{S_RANK_OPTIONS}</select></dd>
<dt><label for="user_rank2">User rank 2:</label></dt>
<dd><select name="user_rank2" id="user_rank2">{S_RANK2_OPTIONS}</select></dd>
<dt><label for="user_rank3">User rank 3:</label></dt>
</dl>
</fieldset>
Code: Select all
//multiple ranks mod by Goz
'S_RANK2' => true,
'S_RANK2_OPTIONS' => $s_rank2_options,
'S_RANK3' => true,
'S_RANK3_OPTIONS' => $s_rank3_options
)
I think the double entry in your acp_user.html is the culprit.looked and looked , can't find any mistake in my install!?!?!?!
the rank still don't show in my ACP....but it's on the acp_user.html file as seem in the post above!
Yeah the sql update you would need to modify it to match your table prefix.pendeja wrote: 3- my although it says:
***ALTER TABLE `phpbb_users` ADD `user_rank2` MEDIUMINT( 8 ) UNSIGNED DEFAULT '0' NOT NULL ;***
i had to do
***ALTER TABLE `phpbb3_users` ADD `user_rank2` MEDIUMINT( 8 ) UNSIGNED DEFAULT '0' NOT NULL ;***
as my database use the prefix "phpbb3" not "phpbb"...
with other mod i had to adapt the prefix in the DB to fit the mods need...could it be the case?
-------------------------------------------------------------------?????
in the event of number 3 being the problem does any one knows if i can change all the database prefix and go back to "phpbb_blablabla" as it seems to create trouble sometimes!?
thanks again for listening to my never ending post!
Code: Select all
$table_prefix = 'phpbb3_';
I have installed it 3 different times.Goztow wrote:...Did anyone else install the last version of the mod and got it working? It's always nice to get feedback, even if nothing's wrong .
I know as i posted before you can see that the html code is there on the picture...blkjack-21 wrote:Not that this helps any...
But I tried your acp_users.html file on my test forum and it worked.
and yeah i have many mod....like 5 major usual ones nothing special but i don have some??blkjack-21 wrote:I cannot get your acp_users.php file to work..is there another mod added to it?