phpBB 3.3.0-RC1 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.
- Solidjeuh
- Registered User
- Posts: 45
- Joined: Sat Feb 25, 2017 6:42 pm
- Location: Aalst, Belgium
- Contact:
Re: phpBB 3.3.0-RC1 released
7.4, It should be supported...
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: phpBB 3.3.0-RC1 released
No, the intent is to support 7.4. That doesn't mean the entire system has been tested with that version of PHP so knowing the version is important. Please report to the tracker so it can be fixed. Thanks.
- Solidjeuh
- Registered User
- Posts: 45
- Joined: Sat Feb 25, 2017 6:42 pm
- Location: Aalst, Belgium
- Contact:
Re: phpBB 3.3.0-RC1 released
Okay I was able to install with PHP 7.3
Hmzz let's see how that tracker works.. never did that before lol
Hmzz let's see how that tracker works.. never did that before lol
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.3.0-RC1 released
That's already fixed in https://tracker.phpbb.com/browse/PHPBB3-16261Solidjeuh wrote: Tue Dec 24, 2019 1:12 pmCode: Select all
[phpBB Debug] "Trying to access array offset on value of type null" in file /var/www/vhosts/supportforum.be/httpdocs/phpbb/install/module_base.php on line 134
It doesn't harm the installation though.
That's something to do with your server / PHP implementation I guess. We replied already in the tracker.Solidjeuh wrote: Tue Dec 24, 2019 1:12 pmCode: Select all
[phpBB Debug] "password_hash(): A thread value other than 1 is not supported by this implementation" in file /var/www/vhosts/supportforum.be/httpdocs/phpbb/passwords/driver/base_native.php on line 57
https://www.php.net/manual/en/function. ... d-hash.php
Ok, you could now try and switch to PHP 7.4 so to test the whole stuff.
Happy holidays
🆓 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.3.0-RC1 released
Here is my
ext.php
:
Code: Select all
<?php
/**
*
* Newest X Users extension for the phpBB Forum Software package.
* @copyright (c) 2014 - 2020 Kirk https://reyno41.bplaced.net/phpbb
* @license GNU General Public License, version 2 (GPL-2.0-only)
*
*/
namespace kirk\newest_x_users;
class ext extends \phpbb\extension\base
{
/**
* Check whether the extension can be enabled.
* Provides meaningful(s) error message(s) and the back-link on failure.
* CLI and 3.1/3.2 compatible (we do not use the $lang object here on purpose)
*
* @return bool
*/
public function is_enableable()
{
$phpbb_min_ver = '3.2.0';
$phpbb_below_ver = '3.4.0@dev';
$user = $this->container->get('user');
$user->add_lang_ext('kirk/newest_x_users', 'newest_x_users_ext_enable_error');
$lang = $user->lang;
$newest_x_users = $lang['NEWEST_X_USERS'];
if (!(phpbb_version_compare(PHPBB_VERSION, $phpbb_min_ver, '>=') && phpbb_version_compare(PHPBB_VERSION, $phpbb_below_ver, '<')))
{
trigger_error(sprintf($lang['ERROR_NEWEST_X_USERS_EXTENSION_NOT_ENABLEABLE'] . '<br />' . $lang['ERROR_MSG_PHPBB_WRONG_VERSION'], $newest_x_users, $phpbb_min_ver, $phpbb_below_ver) . $this->get_adm_back_link(), E_USER_WARNING);
}
return true;
}
private function get_adm_back_link()
{
return adm_back_link(append_sid('index.' . $this->container->getParameter('core.php_ext'), 'i=acp_extensions&mode=main'));
}
}
Re: phpBB 3.3.0-RC1 released
Hey all,
On the danger that I missed a simple step, I post this since my self-checks did not really lead to anything. My host decided last week to update to PHP7.3.7 so the board did not work anymore. In that way I installed the 3.3.0-b2 in order to be able to continue the board.
With the RC1 released I first tried the update package from b2 to RC1 which ended in an '500 | Internal Error'. After that I uploaded all files except config, /images, /files and /store and again the same error. After that I uploaded the complete package and still the same error.
So there seems to be a fundamental mismatch between my server and RC1. Link to the folder with the complete package: www.bmwe21.net/forum3
Edit: Because of Christmas I tried to upload the Changed Files and this worked out. The new fresh install I described hereabove is still available.
On the danger that I missed a simple step, I post this since my self-checks did not really lead to anything. My host decided last week to update to PHP7.3.7 so the board did not work anymore. In that way I installed the 3.3.0-b2 in order to be able to continue the board.
With the RC1 released I first tried the update package from b2 to RC1 which ended in an '500 | Internal Error'. After that I uploaded all files except config, /images, /files and /store and again the same error. After that I uploaded the complete package and still the same error.
So there seems to be a fundamental mismatch between my server and RC1. Link to the folder with the complete package: www.bmwe21.net/forum3
Edit: Because of Christmas I tried to upload the Changed Files and this worked out. The new fresh install I described hereabove is still available.
Last edited by Wilmo on Wed Dec 25, 2019 2:39 pm, edited 1 time in total.
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.3.0-RC1 released
You are using custom messages in ext.php. The function
is_enableable()
changed in phpBB 3.3, see: [3.3.0-b1] ext.php & custom reasons
🆓 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.3.0-RC1 released
The ext.php works correctly, under 3.2 you get this message after installing an extension:
In 3.2 you get an error message regarding the ext.php
If there is an error in the ext.php, this extension can not be installed in 3.3, you will not get an error message.In 3.2 you get an error message regarding the ext.php
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.3.0-RC1 released
You're right, I tested with an extension ready for 3.3 and I put a wrong square bracket there on purpose.Kirk wrote: Thu Dec 26, 2019 7:43 am If there is an error in the ext.php, this extension can not be installed in 3.3, you will not get an error message.
I was able to see the debug error only with F12 (developer tools)
Thanks for reporting.
https://tracker.phpbb.com/browse/PHPBB3-16270
🆓 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