Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Do not post support requests, bug reports or feature requests. Discuss phpBB here. Non-phpBB related discussion goes in General Discussion!
Scam Warning
User avatar
Ancient Viking
Registered User
Posts: 591
Joined: Sun Jan 15, 2012 11:43 pm

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Ancient Viking »

nickvergessen wrote:Then just update from 3.1.3 to 3.1.4: https://www.phpbb.com/downloads/?mode=u ... sion=3.1.3
I just did but it didn't work, because this phpbb/db/migration/data/v31x/v314rc1.php file doesn't exist in the phpBB 3.1.3 to 3.1.4 archive and the update process stop at 104/105 of checked files hence I got an endless loop.
My local forum: egetforum.nu - Offline Forum Online!
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by RMcGirr83 »

v314rc1, v314rc2 and v314 are all within the archive.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
Ancient Viking
Registered User
Posts: 591
Joined: Sun Jan 15, 2012 11:43 pm

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Ancient Viking »

RMcGirr83 wrote:v314rc1, v314rc2 and v314 are all within the archive.
I know, but why does the update stops as soon 104 of 105 files had been checked into an endless loop which I've encounter *countless* of times this late morning. Why?

I just want to know what's causing this update issue.

Seriously, I consider to scrap my current installation and repost everything, which isn't much, and then reinstall the forum with the latest full package.
My local forum: egetforum.nu - Offline Forum Online!
User avatar
KevC
Support Team Member
Support Team Member
Posts: 72375
Joined: Fri Jun 04, 2004 10:44 am
Location: Oxford, UK
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by KevC »

You should start a support topic explaining exactly what you've done so far.
-:|:- Support Request Template -:|:-
Image
"Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb"
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by david63 »

If you have not changed any core files then use the changed files option. Unzip the version that you need, upload that and the install and vendor folders and then run install/database_update.php - job done.
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
User avatar
Ancient Viking
Registered User
Posts: 591
Joined: Sun Jan 15, 2012 11:43 pm

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Ancient Viking »

KevC wrote:You should start a support topic explaining exactly what you've done so far.
Yeah I should do that, but TBH I don't think I'll waste my time doing that and like I said reposting my stuff is done less than one hour.
My local forum: egetforum.nu - Offline Forum Online!
User avatar
Dragosvr92
Registered User
Posts: 1470
Joined: Sat Sep 12, 2009 7:27 am
Location: Romania
Name: Dragos Valentin Rădulescu
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Dragosvr92 »

I see 3.1.4 was released, but the topic linked into the acp says "the requested topic doesnt exist"
https://area51.phpbb.com/phpBB/viewtopi ... &t=2313941

Also.... on https://www.phpbb.com/downloads/ there are no packages to upgrade from RC2 to the stable release. What has happened with the team that deals with releasing them... RC1 and RC2 were released without providing a working download url... The versioncheck for RC2 update took like a day for the team to update... :|
Formerly known as TheKiller
3.0| Avatar on Memberlist 1.0.3
User avatar
AmigoJack
Registered User
Posts: 6113
Joined: Tue Jun 15, 2010 11:33 am
Location: グリーン ヒル ゾーン
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by AmigoJack »

Why did /includes/functions.php for 3.0.x change from

Code: Select all

        // Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
        if (!$disable_cd_check && $url_parts['host'] !== $user->host)
        {
            $url = generate_board_url();
        }
into

Code: Select all

        // Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
        if (!$disable_cd_check && $url_parts['host'] !== $user->host)
        {
            trigger_error('Tried to redirect to potentially insecure url.', E_USER_ERROR);
        }
? I suspect PHPBB3-13765, but its pull request has far too many code changes. I also do not see how generate_board_url() might produce dangerous output.
  • "The problem is probably not my English but you do not want to understand correctly. ... We will not come anybody anyway, nevertheless, it's best to shit this." Affin, 2018-11-20
  • "But this shit is not here for you. You can follow with your. Maybe the question, instead, was for you, who know, so you shoved us how you are." axe70, 2020-10-10
  • "My reaction is not to everyone, especially to you." Raptiye, 2021-02-28
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3738
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Kailey »

Development and production boards updated with no issues. Thanks! :)
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules

If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world, where I sometimes post things documented from my job.
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by RMcGirr83 »

AmigoJack wrote:Why did /includes/functions.php for 3.0.x change
It was actually this commit and had to do with tests it would seem.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
Dragosvr92
Registered User
Posts: 1470
Joined: Sat Sep 12, 2009 7:27 am
Location: Romania
Name: Dragos Valentin Rădulescu
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Dragosvr92 »

... Any help with updating from 3.1.4-RC2 to the stable version?
Formerly known as TheKiller
3.0| Avatar on Memberlist 1.0.3
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by david63 »

Dragosvr92 wrote:... Any help with updating from 3.1.4-RC2 to the stable version?
Use the changed files 3.1.4-RC2 to 3.1.4 option
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
User avatar
Dragosvr92
Registered User
Posts: 1470
Joined: Sat Sep 12, 2009 7:27 am
Location: Romania
Name: Dragos Valentin Rădulescu
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Dragosvr92 »

david63 wrote:
Dragosvr92 wrote:... Any help with updating from 3.1.4-RC2 to the stable version?
Use the changed files 3.1.4-RC2 to 3.1.4 option
So, just dump the changed files in the forum? What about the databaseupdate?
There used to be an Automatic update package for RC versions on 3.0.
From 3.1.3 to 3.1.4-RC1 and RC2, i had an Automatic update package. Why is this different :?

The update packages used to be released on area51. But the linked topic in the acp is dead.
Formerly known as TheKiller
3.0| Avatar on Memberlist 1.0.3
User avatar
Dragosvr92
Registered User
Posts: 1470
Joined: Sat Sep 12, 2009 7:27 am
Location: Romania
Name: Dragos Valentin Rădulescu
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by Dragosvr92 »

I managed to find the package.......
https://download.phpbb.com/pub/release/ ... _3.1.4.zip

Way to go dev team.... Very organised :roll: *disappointed* :(
Formerly known as TheKiller
3.0| Avatar on Memberlist 1.0.3
User avatar
nickvergessen
Former Team Member
Posts: 4397
Joined: Mon Apr 30, 2007 5:33 pm
Location: Stuttgart, Germany
Name: Joas Schilling
Contact:

Re: Discuss: phpBB 3.0.14 and 3.1.4 Release - Please Update

Post by nickvergessen »

Dragosvr92 wrote:I see 3.1.4 was released, but the topic linked into the acp says "the requested topic doesnt exist"
https://area51.phpbb.com/phpBB/viewtopi ... &t=2313941
Where did you get this link from?
Dragosvr92 wrote:Also.... on https://www.phpbb.com/downloads/ there are no packages to upgrade from RC2 to the stable release. What has happened with the team that deals with releasing them... RC1 and RC2 were released without providing a working download url... The versioncheck for RC2 update took like a day for the team to update... :|
RC update packages need to be downloaded from the package archive, since they were not ment for live usage: https://download.phpbb.com/pub/release/3.1/3.1.4/
AmigoJack wrote:Why did /includes/functions.php for 3.0.x change from

Code: Select all

        // Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
        if (!$disable_cd_check && $url_parts['host'] !== $user->host)
        {
            $url = generate_board_url();
        } 
into

Code: Select all

        // Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
        if (!$disable_cd_check && $url_parts['host'] !== $user->host)
        {
            trigger_error('Tried to redirect to potentially insecure url.', E_USER_ERROR);
        } 
? I suspect PHPBB3-13765, but its pull request has far too many code changes. I also do not see how generate_board_url() might produce dangerous output.
No, that's from the security fix.
No Support via PM
Post Reply

Return to “phpBB Discussion”