phpBB 3.2.0-b1 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.
Post Reply
User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.2.0-b1 released

Post by RMcGirr83 »

Whoops :blush:
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
John P
Posts: 157
Joined: Sun Nov 04, 2012 7:39 am
Location: Netherlands
Contact:

Re: phpBB 3.2.0-b1 released

Post by John P »

RMcGirr83 wrote: Tue Feb 23, 2016 10:16 am
CHItA wrote: Tue Feb 23, 2016 8:58 am b2 will have some improvements on trying to prevent server timeouts, but mysql on windows is very slow, nothing we can do about that.
Seemed to work fine prior to 3.2. So are you ready to respond to the multitude of tickets that will be opened due to the installer not finishing on Windows Server installs with MySQL or can the support team simply say "it's the dev teams fault, talk to them."? Maybe you should just dump mySQL altogether :shock:

I wonder what validators who use windows with XAMPP (or WAMP) will do to install boards for testing extensions now.
Happy I'm not the only one complaining, here is the answer viewtopic.php?f=81&t=48881#p287711

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.2.0-b1 released

Post by RMcGirr83 »

I just had to set this in my.ini file

Code: Select all

innodb_flush_log_at_trx_commit = 1
to

Code: Select all

innodb_flush_log_at_trx_commit = 0
and was able to then run the installer without a problem but last I knew the setting defaults to 60 seconds so a bit perplexed by the statement in that link you posted. I will check what the max execution time is in my xamp setup when at home later.
Do not hire Christian Bullock he won't finish the job and will keep your money

CHItA
Development Team
Development Team
Posts: 169
Joined: Thu Mar 12, 2015 1:43 pm
Location: Budapest, Hungary

Re: phpBB 3.2.0-b1 released

Post by CHItA »

RMcGirr83 wrote: Tue Feb 23, 2016 8:21 pm I just had to set this in my.ini file

Code: Select all

innodb_flush_log_at_trx_commit = 1
to

Code: Select all

innodb_flush_log_at_trx_commit = 0
and was able to then run the installer without a problem but last I knew the setting defaults to 60 seconds so a bit perplexed by the statement in that link you posted. I will check what the max execution time is in my xamp setup when at home later.
The current 3.2.x branch, which will be released as b2 contains some improvements, which means that i was able to install phpBB on XAMPP on windows with

Code: Select all

innodb_flush_log_at_trx_commit = 1
...
max_execution_time=2
settings. However, as i said in the other topic, i consider the issue to be resolved as i don't have any information on what might cause your problems without you providing me with certain information. The only change that is planned to be made, is adding connection timeout protection in JS.

I would also like to point out, that for these problems to have a chance to be resolved, we have to be able to reproduce the problem, so if you run into any problems, please create a ticket, with the relevant information about your setup.

Edited: 2016.02.23 22:30

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.2.0-b1 released

Post by RMcGirr83 »

CHItA wrote: Tue Feb 23, 2016 9:05 pm I would also like to point out, that for these problems to have a chance to be resolved, we have to be able to reproduce the problem, so if you run into any problems, please create a ticket, with the relevant information about your setup.
Not sure what information to give so I'll give what I think you may be looking for

Windows version: 10
XAMPP Version: 5.5.30 (uses MariaDB instead of MySQL...my.ini attached)
PHP Version 5.5.30
Apache 2.4.17
OpenSSL 1.0.2d
php.ini file is attached and the maximum execution time is set to 30 seconds.
my.zip
(2.44 KiB) Downloaded 309 times
php.ini.zip
(23.36 KiB) Downloaded 310 times
If you need other information, please let me know.

Edit: added my.ini file
Do not hire Christian Bullock he won't finish the job and will keep your money

User avatar
ThE KuKa
Style Customisations
Style Customisations
Posts: 24
Joined: Sun Dec 14, 2003 2:59 pm
Location: Barcelona - Spain
Contact:

Re: phpBB 3.2.0-b1 released

Post by ThE KuKa »

Hello,

Not ready the package 3.1.8 to 3.2.0 B1 ?
https://download.phpbb.com/pub/release/ ... /3.2.0-b1/

Best regards.
All unsolicited PMs will be ignored.
:warning: Knowledge Base | Documentation | Board rules :warning:


If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate with Image
:flag_es: phpBB Spain - Online Since 2003 :heart:

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.2.0-b1 released

Post by RMcGirr83 »

RMcGirr83 wrote: Wed Feb 24, 2016 11:19 am
CHItA wrote: Tue Feb 23, 2016 9:05 pm I would also like to point out, that for these problems to have a chance to be resolved, we have to be able to reproduce the problem, so if you run into any problems, please create a ticket, with the relevant information about your setup.
Not sure what information to give so I'll give what I think you may be looking for

Windows version: 10
XAMPP Version: 5.5.30 (uses MariaDB instead of MySQL...my.ini attached)
PHP Version 5.5.30
Apache 2.4.17
OpenSSL 1.0.2d
php.ini file is attached and the maximum execution time is set to 30 seconds.
my.zip
php.ini.zip
If you need other information, please let me know.

Edit: added my.ini file
@CHitA were you able to reproduce the issue using the settings I posted?
Do not hire Christian Bullock he won't finish the job and will keep your money

CHItA
Development Team
Development Team
Posts: 169
Joined: Thu Mar 12, 2015 1:43 pm
Location: Budapest, Hungary

Re: phpBB 3.2.0-b1 released

Post by CHItA »

RMcGirr83 wrote: Wed Mar 02, 2016 3:56 pm @CHitA were you able to reproduce the issue using the settings I posted?
Not with the current branch, nope.

User avatar
RMcGirr83
Registered User
Posts: 360
Joined: Fri Mar 09, 2007 1:51 am
Contact:

Re: phpBB 3.2.0-b1 released

Post by RMcGirr83 »

Well that just annoys/confuses me. I will try the b2 branch and report back.
Do not hire Christian Bullock he won't finish the job and will keep your money

CHItA
Development Team
Development Team
Posts: 169
Joined: Thu Mar 12, 2015 1:43 pm
Location: Budapest, Hungary

Re: phpBB 3.2.0-b1 released

Post by CHItA »

RMcGirr83 wrote: Mon Mar 07, 2016 8:50 pm Well that just annoys/confuses me. I will try the b2 branch and report back.
Please do that, as i had the same XAMPP version as you did, with the settings you gave me when i checked out one of your extensions. The only difference seems to be the OS version, so i hope with the improvements in b2, it will work for you just fine.

Post Reply