Ranks Page
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Ranks Page
Board rules! No PM support
- Inner Circle
- BBCoder III
- Posts: 107
- Joined: 20 Mar 2010, 20:25
- Location: Germany
- Contact:
Re: Ranks Page
A really interesting Modification! Nice one!
I have a suggestion for a maybe next version:
It would be great if you could add an additional description to a Rank (e.g. Special Ranks )
I have a suggestion for a maybe next version:
It would be great if you could add an additional description to a Rank (e.g. Special Ranks )
Re: Ranks Page
French Translation
Code: Select all
// Ranks page by stoker
$lang = array_merge($lang, array(
'RARANKS' => 'Rangs',
'VIEW_RARANKS' => 'Voir Les Rangs',
'RARANKSID' => 'ID',
'RARANK_TITLE' => 'Titre Du Rang',
'RARANK_MIN' => 'Posts Minimums',
'RARANK_SPECIAL' => 'Rang Spécial',
'RARANK_IMAGE' => 'Image Du Rang',
'RANK_COUNT' => '1 Rang',
'RANKS_COUNT' => '%d Rangs',
));
Re: Ranks Page
@Stoker - How do you get it to open from a folder "ranks/"
Re: Ranks Page
well see if this works, if you are going to have the ranks.php file inside the ranks/ folder if you already have this installed, open up includes/functions.php file
Find:
Replace with:
i haven't tested it, but i have done it like this for other stuff!
Find:
Code: Select all
'U_RANKSPAGE' => append_sid("{$phpbb_root_path}ranks.$phpEx"),
Code: Select all
'U_RANKSPAGE' => append_sid("{$phpbb_root_path}ranks/ranks.$phpEx"),
Re: Ranks Page
Thanks
works okay, but not like this site. looking for that
works okay, but not like this site. looking for that
Re: Ranks Page
i don't understand, what do you mean like this site!?
Re: Ranks Page
i think he has the ranks.php file inside a ranks folder, then rename ranks.php to index.php and in the functions.php replace the edit with this:
Code: Select all
'U_RANKSPAGE' => append_sid("{$phpbb_root_path}ranks/index.$phpEx"),
Re: Ranks Page
Thanks for the help so fare. i'll wait and se if Stoker post the solution
[edit]Fixed i hope - not quit![/edit]
i replaced it with
[edit]Fixed i hope - not quit![/edit]
i replaced it with
Code: Select all
'U_RANKSPAGE' => append_sid("{$phpbb_root_path}ranks/"),
Last edited by Fire-Fox on 19 Apr 2010, 17:48, edited 2 times in total.