Discuss: phpBB 3.3.8 Release

Do not post support requests, bug reports or feature requests. Discuss phpBB here. Non-phpBB related discussion goes in General Discussion!
Scam Warning
alexia1964
Registered User
Posts: 49
Joined: Sun May 10, 2020 2:38 pm

Re: Discuss: phpBB 3.3.8 Release

Post by alexia1964 »

KillBill. wrote: Fri Jul 15, 2022 2:00 pm
Mick wrote: Fri Jul 15, 2022 12:29 pm PHP (not phpBB) needs more memory allocating, if it’s an issue for you you should post in support.
I increased the limit to 16G, the error is still present.
In my opinion, there will be a different problem here.
+1 I agree with this.
Last edited by alexia1964 on Wed Jul 20, 2022 4:51 pm, edited 1 time in total.
User avatar
KillBill.
Registered User
Posts: 625
Joined: Tue Jun 02, 2009 4:07 pm
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by KillBill. »

One more note about search indexing.

1. "phpBB Native Fulltext" Delete all search indexes
2. All forum - Enable search indexing: NO
3. Run Search create index

I measured the time with a stopwatch and the process ran for 50 seconds, so the number of data required to be indexed is 0.

May I ask, if there is nothing to index, then what the hell is phpBB doing in the background for so long?

Edit:
I just deleted the forum and ran the creation of the index again and this is the situation for 0 forum 0 topic 0 post as well :lol:
50 seconds of runtime for nothing.

Now that there is no data, I enabled "debug.sql_explain" back on again to see what queries were running during the 50 seconds, but I got a memory limit error again.

So there might be a big problem with the indexing task.
Hervé
Registered User
Posts: 414
Joined: Tue Jun 04, 2019 7:51 am
Location: Belgium
Name: Rudy
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Hervé »

Hi !
I have replaced the phpBB native full text with Mysql Full text.
Same problem Unknown column 'pf_phpbb_youtube' while updating from 3.3.7 to 3.3.8.
I don't understand what I can do.
User avatar
Crizzo
Translations & International Support Teams Manager
Translations & International Support Teams Manager
Posts: 1653
Joined: Thu Apr 23, 2009 1:20 pm
Location: Stuttgart, Germany
Name: Christian
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Crizzo »

Hervé wrote: Tue Jul 19, 2022 2:49 pm I don't understand what I can do.
Do this code change: https://github.com/phpbb/phpbb/pull/6404/files or re-create the youtube-profile field and then restart your update

Regards
My extensions for phpBB: CDB
German phpBB Support at www.phpbb.de
Hervé
Registered User
Posts: 414
Joined: Tue Jun 04, 2019 7:51 am
Location: Belgium
Name: Rudy
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Hervé »

In
phpbb/db/migration/data/v33x/profilefield_youtube_update.php
I have replaced

Code: Select all

return $row['field_validation'] === $this->youtube_url_matcher;
by

Code: Select all

return !$row || $row['field_validation'] === $this->youtube_url_matcher;
Same problem.

How can I re-create the youtube-profile field ?
User avatar
Crizzo
Translations & International Support Teams Manager
Translations & International Support Teams Manager
Posts: 1653
Joined: Thu Apr 23, 2009 1:20 pm
Location: Stuttgart, Germany
Name: Christian
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Crizzo »

Please continue in your support topic: viewtopic.php?p=15865586#p15865586
My extensions for phpBB: CDB
German phpBB Support at www.phpbb.de
Hervé
Registered User
Posts: 414
Joined: Tue Jun 04, 2019 7:51 am
Location: Belgium
Name: Rudy
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Hervé »

Please see also MySQL Fulltext Search
alexia1964
Registered User
Posts: 49
Joined: Sun May 10, 2020 2:38 pm

Re: Discuss: phpBB 3.3.8 Release

Post by alexia1964 »

KillBill. wrote: Tue Jul 19, 2022 12:16 pm One more note about search indexing.

1. "phpBB Native Fulltext" Delete all search indexes
2. All forum - Enable search indexing: NO
3. Run Search create index

I measured the time with a stopwatch and the process ran for 50 seconds, so the number of data required to be indexed is 0.

May I ask, if there is nothing to index, then what the hell is phpBB doing in the background for so long?

Edit:
I just deleted the forum and ran the creation of the index again and this is the situation for 0 forum 0 topic 0 post as well :lol:
50 seconds of runtime for nothing.

Now that there is no data, I enabled "debug.sql_explain" back on again to see what queries were running during the 50 seconds, but I got a memory limit error again.

So there might be a big problem with the indexing task.
I agree with this.
sp3ctre
Registered User
Posts: 321
Joined: Sun Jul 15, 2007 11:06 am

Re: Discuss: phpBB 3.3.8 Release

Post by sp3ctre »

Marc wrote: Mon Jun 27, 2022 7:41 am
The recommended way of handling this is via a small extension that employs our events system. If you need a more detailed help with that, we'll be happy to support you. Please open a topic in the appropriate section.
Please can you point me in the direction of this extension, it doesn't seem to be in the official list. Also, I have a feeling an awful lot of people use PHPINCLUDE, not just a few... this is going to be quite the headache for a lot of people!
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by DavidIQ »

sp3ctre wrote: Wed Jul 20, 2022 8:08 pm Please can you point me in the direction of this extension, it doesn't seem to be in the official list. Also, I have a feeling an awful lot of people use PHPINCLUDE, not just a few... this is going to be quite the headache for a lot of people!
You would have to make your own extension to process the information and send it out to a template event. There are very few people using PHPINCLUDE these days. We've been encouraging people to not use this for a long time now because the feature wasn't the best or most secure.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Discuss: phpBB 3.3.8 Release

Post by david63 »

sp3ctre wrote: Wed Jul 20, 2022 8:08 pm I have a feeling an awful lot of people use PHPINCLUDE
PHPINCLUDE is depreciated and will be being removed in phpBB 4 - https://tracker.phpbb.com/browse/PHPBB3-16967
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
sp3ctre
Registered User
Posts: 321
Joined: Sun Jul 15, 2007 11:06 am

Re: Discuss: phpBB 3.3.8 Release

Post by sp3ctre »

david63 wrote: Thu Jul 21, 2022 1:42 pm
sp3ctre wrote: Wed Jul 20, 2022 8:08 pm I have a feeling an awful lot of people use PHPINCLUDE
PHPINCLUDE is depreciated and will be being removed in phpBB 4 - https://tracker.phpbb.com/browse/PHPBB3-16967
I am aware if that, it’s in the release notes. All I am saying is I predict a lot of people have built sites using PHPINCLUDE.
User avatar
aorlovsky
Registered User
Posts: 6
Joined: Sun Jan 30, 2022 10:55 am
Location: Germany
Name: Alexander Orlovsky
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by aorlovsky »

Hi folks!
I think today i unlocked new achievement deploy of more advanced upgrade , my version of phpbb was 3.3.5 and i took the advance route.

First i started with full package deal, then nothing did worked!! , i done both on client side and on server side cache deletion, nothing, then i figure it out that my cookie domain wasn't set right in board settings of my phpbb.

I disabled all my plugins manually in DB and started to upgrade to version 3.3.8 after that all started to work, but minor issues left like following "The submitted form was invalid" in latest chrome browser.
This was so strange, i did cleaned up cache and cookie in chrome, but after restart the same issue stayed at login page, so i dont know did i stumble to a bug or its just was some minor misconfiguration of chrome on my side?

I am using double authentication and in firefox and there i didn't experienced any issues.
Then i manually deleted cookies and cache in chrome user directory, and then restarted chrome , i was "pushed" to login to google account , and after that the problems disappear.
Now everything works and finally i can even try to use the VigLink, lets hope that next updates will be less stressful, additionally i think the user guide for update should mention the disabling of all extension before the upgrade , but now i am happy and proud of the experience.....
Last edited by aorlovsky on Mon Aug 22, 2022 9:37 am, edited 2 times in total.
User avatar
Ephemeraboy
Registered User
Posts: 333
Joined: Tue Dec 29, 2009 4:25 pm
Location: Bandung Kota Hujan
Name: Bernando Bona Tius Sianipar
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Ephemeraboy »

Thx a lot
My diary, my notepad, and my life on
http://www.bonatius.com
User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 5657
Joined: Tue Oct 30, 2007 10:57 pm
Location: Munich, Germany
Name: Marc
Contact:

Re: Discuss: phpBB 3.3.8 Release

Post by Marc »

Closing this topic since phpBB 3.3.9 has been released:
viewtopic.php?t=2631536
Locked

Return to “phpBB Discussion”