phpBB 3.3.4-RC1 released

General discussion of development ideas and the approaches taken in the 3.x branch of phpBB. The current feature release of phpBB 3 is 3.3/Proteus.
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.

If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 1903
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth
Contact:

Re: phpBB 3.3.4-RC1 released

Post by DavidIQ »

So having those lines removed gives you MORE errors?
Image

User avatar
P_I
Community Team
Community Team
Posts: 134
Joined: Fri Oct 31, 2014 4:56 am

Re: phpBB 3.3.4-RC1 released

Post by P_I »

DavidIQ wrote: Thu Mar 18, 2021 8:07 pm So having those lines removed gives you MORE errors?
I don't think so. As I stated, the chmod(): Operation not permitted are probably caused my SELinux settings and can be ignore. I was working quickly and didn't spend to much time on SELinux context settings.

It was been eons since I've done a new install and to the best of my searching there are no definitive SELinux 'permissions' setting documented for phpBB.

User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 1903
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth
Contact:

Re: phpBB 3.3.4-RC1 released

Post by DavidIQ »

Then it looks like it caused a different error:

Code: Select all

[phpBB Debug] "Constant CONFIG_TABLE already defined" in file /var/www/html/phpbb/includes/constants.php on line 250
Image

User avatar
P_I
Community Team
Community Team
Posts: 134
Joined: Fri Oct 31, 2014 4:56 am

Re: phpBB 3.3.4-RC1 released

Post by P_I »

I sense another fresh install is in order, without changing install/app.php from the version included in 3.3.4-RC1. Yes I volunteer again 😂

User avatar
3Di
Registered User
Posts: 951
Joined: Tue Nov 01, 2005 9:50 pm
Location: Milano 🇮🇹 Frankfurt 🇩🇪
Contact:

Re: phpBB 3.3.4-RC1 released

Post by 3Di »

I opened a DRAFT PR here https://github.com/phpbb/phpbb/pull/6167
Tomorrow I will test myself all of this, time permitting.

Thanks everybody. :)
Last edited by 3Di on Fri Mar 19, 2021 9:41 am, edited 1 time in total.
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades

User avatar
3Di
Registered User
Posts: 951
Joined: Tue Nov 01, 2005 9:50 pm
Location: Milano 🇮🇹 Frankfurt 🇩🇪
Contact:

Re: phpBB 3.3.4-RC1 released

Post by 3Di »

DavidIQ wrote: Thu Mar 18, 2021 8:11 pm Then it looks like it caused a different error:

Code: Select all

[phpBB Debug] "Constant CONFIG_TABLE already defined" in file /var/www/html/phpbb/includes/constants.php on line 250
This is the only TABLES line it was already silented -> See the @ in front of it, why?

Code: Select all

@define('CONFIG_TABLE',				$table_prefix . 'config');
But PHP 8 is more a nitpicker, hence also this line should be wrapped by an IF stament like
2021-03-18 21_27_13-EditPlus - [constants.php].png

Code: Select all

if (!defined('CONFIG_TABLE'))
{
	define('CONFIG_TABLE',				$table_prefix . 'config');
}
IMHO
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades

User avatar
Onnozel Manneke
Registered User
Posts: 6
Joined: Wed Feb 10, 2021 5:23 pm

Re: phpBB 3.3.4-RC1 released

Post by Onnozel Manneke »

And what about this? Is it also a bug?
Onnozel Manneke wrote: Tue Mar 16, 2021 10:14 pm
And in ACP - General I see:

Image


"Board version" is not using the language string from the NL language. It it present in /nl/acp/common.php

Code: Select all

	'BOARD_VERSION'		=> 'Forumversie',

User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 1903
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth
Contact:

Re: phpBB 3.3.4-RC1 released

Post by DavidIQ »

Looks to be a problem with your installation.
nl_fine.png
Image

User avatar
Onnozel Manneke
Registered User
Posts: 6
Joined: Wed Feb 10, 2021 5:23 pm

Re: phpBB 3.3.4-RC1 released

Post by Onnozel Manneke »

DavidIQ wrote: Fri Mar 19, 2021 12:33 am Looks to be a problem with your installation.
nl_fine.png
Strange, it's only that language string that's not working... Maybe an extension that uses the same string that overwrite it? I'll take a look tomorrow.

==EDIT==

Just had a quick look, and it's the "System info" extension from Dmzx that causes it.

Sorry 🤗🤗

User avatar
3Di
Registered User
Posts: 951
Joined: Tue Nov 01, 2005 9:50 pm
Location: Milano 🇮🇹 Frankfurt 🇩🇪
Contact:

Re: phpBB 3.3.4-RC1 released

Post by 3Di »

P_I wrote: Thu Mar 18, 2021 8:05 pm No problem. Just trying to contribute to a smooth release of phpBB 3.3.4.

A fresh 3.3.4-RC1 install with the lines removed from install/app.php was generally successful on my CentOS 7.9 (PHP 8.0.3) server.

There are a few phpBB debug messages.
...
What about those few phpBB debug messages? Did you find them in your error logs or on the main screen after installation?
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades

Post Reply