Steve_B wrote:That is very tidy indeed , I like the board very much. I would be tempted to just do a back up and the install 3.0.2 and then restore your db, to me it is better to have a populated board than a clean one when you start out as nobody seems to want to post on a clean forum, and you will then have a small basis to start with.
So to me :-
- Back up db
clean install of phpbb 3.0
restore db
install Mods
That gives you some posts but also maintains the directory structure and the heirachy you want.
As an aside I noticed that your sub forums are all left justified, how was that done please?
Thanks for your reply. It looks like I will follow the steps youre suggesting, because there are problems with installing a new Board/Portal again.
So what I have to do is:
- Download the newest version of phpBB3 (3.0.2)
- Back up the databse (I dont know MySQL very well, perhaps someone can explain how to back up, update and restore the database please =/ )
- Just upload all the files included in the clean 3.0.2 package and replace them with the files on my webspace (Its version 3.0.0). (Is there any file I have to keep?)
- Afterwards, install the Mods (Board3 Portal will the first Mod being installed of course

)
- After installing the Portal, I will restore the Style folder, so finally, everything will look like the original board (except there are the current Versions installed and some pieces of the old Mods are gone, so everything will be "clean")
At the weekend, I will have enough time to work on it, hope everything is working well.
edit:
Steve_B wrote:As an aside I noticed that your sub forums are all left justified, how was that done please?
Its over a half of a year ago, but still has to work:
Open the file: includes/functions_display.php, and search:
Code: Select all
$s_subforums_list = (string) implode(', ', $s_subforums_list);
Replace with:
Code: Select all
if(!empty($s_subforums_list))
{
$s_subforums_list = (string) implode('</li><li class="subforum">', $s_subforums_list);
$s_subforums_list = '<ul class="subforum"><br /><li class="subforum">' . $s_subforums_list . '</li></ul>';
}
To modify the style of it, you have to open: styles/prosilver/themes/common.css and search for:
Code: Select all
.clear {
display: block;
clear: both;
font-size: 1px;
line-height: 1px;
background: transparent;
}
Add after:
Code: Select all
ul.subforum {
/*Your CSS Code */
}
li.subforum {
/*Your CSS Code */
}