phpBB 3.2.10-RC2 released
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.
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.
Re: phpBB 3.2.10-RC2 released
No, we always use com to test rc releases before the actual release
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.2.10-RC2 released
As I said that's new to me, thanks.Paul wrote: Fri Jun 12, 2020 7:04 am No, we always use com to test rc releases before the actual release
🆓 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
🚀 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
Re: phpBB 3.2.10-RC2 released
That could be subject to particular .com Sphinx config, as described like here http://sphinxsearch.com/docs/current.ht ... prefix-len
But can't bet
Re: phpBB 3.2.10-RC2 released
I use php 7.2.31 and i'm seeing the following php error when using an extension that makes use of the request class:
phpBB3/phpbb/request/type_cast_helper.php
More so this:
Fixed in 3.3.0 but not in 3.2.x:
https://github.com/phpbb/phpbb/pull/5798/files
I thought phpBB 3.2.x was compatible with php 7.0, 7.1 and 7.2 but not 7.3 and up?
https://github.com/phpbb/phpbb/pull/4624
I believe it is caused by a line of code in the following file:The each() function is deprecated
phpBB3/phpbb/request/type_cast_helper.php
More so this:
Code: Select all
list($default_key, $default_value) = each($default);
https://github.com/phpbb/phpbb/pull/5798/files
I thought phpBB 3.2.x was compatible with php 7.0, 7.1 and 7.2 but not 7.3 and up?
https://github.com/phpbb/phpbb/pull/4624
Re: phpBB 3.2.10-RC2 released
welshpaul
Normally you shouldn't get deprecation warnings on production board because of the error reporting level used for phpBB:
Why are you getting it?
Normally you shouldn't get deprecation warnings on production board because of the error reporting level used for phpBB:
Code: Select all
// Report all errors, except notices and deprecation messages
$level = E_ALL & ~E_NOTICE & ~E_DEPRECATED;
error_reporting($level);
Re: phpBB 3.2.10-RC2 released
I am seeing the error via an extension that reports to bugsnag via an api to debug another issue.
While I understand that the depreciated functions still exists and that these functions will not be available in future versions I just thought such issues had been updated alongside 3.3.0.
Last edited by welshpaul on Wed Jul 08, 2020 12:20 pm, edited 1 time in total.
Re: phpBB 3.2.10-RC2 released
So it should be ok on production. Also despite the function is deprecated it works as expected, so in common it doesn't mean that 3.2 is not PHP 7.2 compatible.
Re: phpBB 3.2.10-RC2 released
Yea I should have phrased things better. I needed to resolve this though as the free tier offered by Bugsnag is limited to reporting X amount of errors and I kept going over that allowance due to these deprecated errors. Anyway, resolved this issue on my board.
- Talk19Zehn
- Registered User
- Posts: 13
- Joined: Sat Jul 18, 2020 9:05 am
Re: phpBB 3.2.10-RC2 released
Hello, what is the reason <hr class = "divider" /> was deleted in this template: viewtopic_ body.html
HTML diff 3.2.9_to_3.2.10-RC1 (ff => 3.2.10-RC2, 3.3.1-RC1)
?
The demarcation was unique and correct and well suited for the visually impaired to create a separation (color-visible feature) between the contributions. In addition, decorative graphics, lines, etc. could be declared via the CSS and subsequently used at that position.
In my opinion, the element hr.divider in the Prosilver standard style was a particularly good separating feature for the definition of a delimitation between the posts.
My suggestion is to undo the removal: Inheriting the template (viewtopic_ body.html) changes designs that used this class.
Small abolition with a big impact ...
Regards
HTML diff 3.2.9_to_3.2.10-RC1 (ff => 3.2.10-RC2, 3.3.1-RC1)
Code: Select all
- <hr class = "divider" />
<! - EVENT viewtopic_body_postrow_post_after ->
<! - END postrow ->
The demarcation was unique and correct and well suited for the visually impaired to create a separation (color-visible feature) between the contributions. In addition, decorative graphics, lines, etc. could be declared via the CSS and subsequently used at that position.
In my opinion, the element hr.divider in the Prosilver standard style was a particularly good separating feature for the definition of a delimitation between the posts.
My suggestion is to undo the removal: Inheriting the template (viewtopic_ body.html) changes designs that used this class.
Small abolition with a big impact ...
Regards
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.2.10-RC2 released
^^ BBcode code needs an edit to separate your statement.
(edit: somebody did it for you without leaving his mark )
There were good reasons: https://tracker.phpbb.com/browse/PHPBB3-16445
Also, no one forbids you to copy the
You don't necessarily have to inherit everything.
(edit: somebody did it for you without leaving his mark )
There were good reasons: https://tracker.phpbb.com/browse/PHPBB3-16445
Also, no one forbids you to copy the
viewtopic_ body.html
file in your style and add your missing line and its CSS.You don't necessarily have to inherit everything.
🆓 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
🚀 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