Ranks Page

Modifications for phpBB3.
Try the Mods here and share Your own Mods
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

Ranks Page

Post by Stoker »

Title: Ranks Page 1.0.4

Moved: viewtopic.php?f=45&t=1294

Re: Ranks Page

Post by Inner Circle »

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 )

Re: Ranks Page

Post by Michel »

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

Post by Fire-Fox »

@Stoker - How do you get it to open from a folder "ranks/"

Re: Ranks Page

Post by cisco007 »

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:

Code: Select all

		'U_RANKSPAGE'				=> append_sid("{$phpbb_root_path}ranks.$phpEx"),
Replace with:

Code: Select all

		'U_RANKSPAGE'				=> append_sid("{$phpbb_root_path}ranks/ranks.$phpEx"),
i haven't tested it, but i have done it like this for other stuff!

Re: Ranks Page

Post by Fire-Fox »

Thanks :)

works okay, but not like this site. looking for that :)

Re: Ranks Page

Post by cisco007 »

i don't understand, what do you mean like this site!?

Re: Ranks Page

Post by Fire-Fox »

Demo:
ranks.php

(Look in the browser url when you have it open)
Last edited by Fire-Fox on 19 Apr 2010, 15:35, edited 1 time in total.

Re: Ranks Page

Post by cisco007 »

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

Post by Fire-Fox »

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

Code: Select all

 'U_RANKSPAGE'            => append_sid("{$phpbb_root_path}ranks/"),
Last edited by Fire-Fox on 19 Apr 2010, 15:48, edited 2 times in total.