Search found 156 matches

by rxu
Wed Jan 13, 2021 3:35 pm
Forum: [4.x] Discussion
Topic: Doctrine DBAL prepared statement troubles
Replies: 20
Views: 109277

Re: Doctrine DBAL prepared statement troubles

As for the Oracle issue, I tried to fix all errors arised during tests on Github Actions and found out that phpBB's Oracle driver was actually never compatible with Oracle, at least it's not compatible with 11g (which is 13 years old), so apparently phpBB simply was never really Oracle-compatible, d...
by rxu
Tue Nov 24, 2020 1:49 pm
Forum: [3.x] Discussion
Topic: Only show first post to guests
Replies: 2
Views: 9510

Re: Only show first post to guests

https://www.phpbb.com/customise/db/exte ... _to_guest/
I guess your screenshot is exactly from that contribution details.
by rxu
Sun Oct 25, 2020 3:19 pm
Forum: [3.x] Discussion
Topic: phpBB 3.3.2-RC1 released
Replies: 7
Views: 16126

Re: phpBB 3.3.2-RC1 released

I'd mention 2 notification fixes: - [PHPBB3-16544] - topic_notify.txt is wrongly used for forum subscriptions -> splits new topics/new posts notifications for forum subscriptions, - [PHPBB3-16208] - No option for email for "Notify me" when a reported post is dealt with -> fixes/adds notifi...
by rxu
Sat Jul 18, 2020 12:09 pm
Forum: [3.x] Discussion
Topic: phpBB 3.3.1-RC1 released
Replies: 73
Views: 392357

Re: phpBB 3.3.1-RC1 released

Tastenplayer wrote: Sat Jul 18, 2020 11:54 am But not this mixture!
There's no 4/5 icons mixture. All they are FA5. FA4 icon names just kept working by mapping to FA5 icons via css BC layer, but they aren't actually FA4.
by rxu
Sun Jul 12, 2020 7:52 am
Forum: [3.x] Discussion
Topic: phpBB 3.3.1-RC1 released
Replies: 73
Views: 392357

Re: phpBB 3.3.1-RC1 released

Kirk wrote: Sun Jul 12, 2020 7:30 am Some icons look blurred, you have to adjust a lot.
Thats most likely a browser cache.
by rxu
Wed Jul 08, 2020 12:19 pm
Forum: [3.x] Discussion
Topic: phpBB 3.2.10-RC2 released
Replies: 33
Views: 86487

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.
by rxu
Wed Jul 08, 2020 11:59 am
Forum: [3.x] Discussion
Topic: phpBB 3.2.10-RC2 released
Replies: 33
Views: 86487

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:

Code: Select all

// Report all errors, except notices and deprecation messages
$level = E_ALL & ~E_NOTICE & ~E_DEPRECATED;
error_reporting($level);
Why are you getting it?
by rxu
Tue Jun 30, 2020 1:00 pm
Forum: [4.x] Style Development
Topic: Iconify
Replies: 13
Views: 70566

Re: phpBB 3.3.1-RC1 released

There's no need in SQL to run anywhere but this change to fix the issue https://github.com/phpbb/phpbb/pull/601 ... 6b6d831a85
by rxu
Sat Jun 27, 2020 10:22 am
Forum: [3.x] Discussion
Topic: phpBB 3.3.1-RC1 released
Replies: 73
Views: 392357

Re: phpBB 3.3.1-RC1 released

Tastenplayer wrote: Sat Jun 27, 2020 9:55 am Yes but apparently an additional code/link in the overall_header is needed to display the new version 5 icons inserted in a css.
What style is it about and is there a place where one can see the current code causing issues?
by rxu
Sat Jun 27, 2020 5:52 am
Forum: [3.x] Discussion
Topic: phpBB 3.3.1-RC1 released
Replies: 73
Views: 392357

Re: phpBB 3.3.1-RC1 released

Because this error was added later ;)