phpBB 3.0.11 Release Candidate 2 published

Discussion of general topics related to the new version and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Forum rules
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
User avatar
Dragosvr92
Registered User
Posts: 624
Joined: Tue May 31, 2011 12:08 pm
Location: Romania
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by Dragosvr92 »

No problem. I re-ran the database update and everything is fine now.
Previous user: TheKiller
Avatar on Memberlist 1.0.3

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by RMcGirr83 »

@Bantu, I am still getting that error previously reported.
The file ./../styles/prosilver_se/template/bbcode.html is missing.
and this time even installing prosilver as a style it still fails with the above

EDIT:

Only way I could do the update was to activate prosilver and make prosilver the default style on the forum.
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
naderman
Consultant
Posts: 1727
Joined: Sun Jan 11, 2004 2:11 am
Location: Berlin, Germany
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by naderman »

Can you get us a copy of the board where you are having this problem? We've tried rather hard to reproduce this, but it's just not happening for any of us.

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by RMcGirr83 »

Can you be more specfic as to what you are wanting from the board? Files and db or.....
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
naderman
Consultant
Posts: 1727
Joined: Sun Jan 11, 2004 2:11 am
Location: Berlin, Germany
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by naderman »

Everything :) Or at least as much as you can give us.

User avatar
Ger
Registered User
Posts: 293
Joined: Mon Jul 26, 2010 1:55 pm
Location: 192.168.1.100
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by Ger »

Maybe you can simply make a copy for yourself, deleting all forums (and topics/posts with that) and users, excl. an owners account? That, repacked with all files (excl. avatars and attachements) should suffice I'd say.
Above message may contain errors in grammar, spelling or wrongly chosen words. This is because I'm not a native speaker. My apologies in advance.

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by RMcGirr83 »

I gave it to him that very day.
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
naderman
Consultant
Posts: 1727
Joined: Sun Jan 11, 2004 2:11 am
Location: Berlin, Germany
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by naderman »

Ok finally worked this out (sorry I was gone for vacation for a while).

The problem is caused by the mchat hook that you have running on the install pages as well. However the style setup there isn't the usual (as the special install style is used) and apparently bbcodes don't work correctly there.

So the simple fix would be to change your hook to do the following, to avoid running it on install pages:

Code: Select all

function hook_mchat(&$hook)
{
    if (defined('IN_INSTALL'))
    {
        return;
    } 
I suppose the unavailability of bbcode handling on the installation pages is a bug as well, but I think one that can be looked at for 3.0.12.

The problem is that set_custom_template will remove any information about inheritance, as the custom template (adm/style) does not inherit from anywhere. However the custom adm/style template does not provide any bbcode.html file. This can either be solved by copying the prosilver one there as a default, or by building in some sort of hardcoded bbcode rendering. Neither of these seems ideal to me.

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by RMcGirr83 »

Thanks for the explanation Nils.
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
bantu
3.0 Release Manager
3.0 Release Manager
Posts: 557
Joined: Thu Sep 07, 2006 11:22 am
Location: Karlsruhe, Germany
Contact:

Re: phpBB 3.0.11 Release Candidate 2 published

Post by bantu »

Maybe we should add a "Add this code snippet to your hook, if you do not want it to run in the installer." note to the hooks section in documentation. We could probably even do this for 3.0.11. On the other side, we might just want to fix the underlying bug for 3.0.12.

Post Reply