phpBB 3.0.11 Release Candidate 2 published
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!
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!
- 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
No problem. I re-ran the database update and everything is fine now.
Previous user: TheKiller
Avatar on Memberlist 1.0.3
Avatar on Memberlist 1.0.3
Re: phpBB 3.0.11 Release Candidate 2 published
@Bantu, I am still getting that error previously reported.
EDIT:
Only way I could do the update was to activate prosilver and make prosilver the default style on the forum.
and this time even installing prosilver as a style it still fails with the aboveThe file ./../styles/prosilver_se/template/bbcode.html is missing.
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
Re: phpBB 3.0.11 Release Candidate 2 published
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.
Re: phpBB 3.0.11 Release Candidate 2 published
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
Re: phpBB 3.0.11 Release Candidate 2 published
Everything
Or at least as much as you can give us.
Re: phpBB 3.0.11 Release Candidate 2 published
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.
Re: phpBB 3.0.11 Release Candidate 2 published
I gave it to him that very day.
Do not hire Christian Bullock he won't finish the job and will keep your money
Re: phpBB 3.0.11 Release Candidate 2 published
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:
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.
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;
}
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.
Re: phpBB 3.0.11 Release Candidate 2 published
Thanks for the explanation Nils.
Do not hire Christian Bullock he won't finish the job and will keep your money
- bantu
- 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
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.