Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

nubuilder compatibility with php 8.2 ? Prerequisites ? Topic is solved

Questions related to using nuBuilder Forte.
Post Reply
yvesf
Posts: 315
Joined: Sun Mar 14, 2021 8:48 am
Location: Geneva
Has thanked: 87 times
Been thanked: 11 times

nubuilder compatibility with php 8.2 ? Prerequisites ?

Unread post by yvesf »

Hello,

I have deploy a new version of php. When I create a fast form, when I save it, I have the recurring message below
FastForm_php82.PNG
What are the prerequisites in regards to php/mysql with the current version of nubuilder4.5 ?
Many thx,

Yves
You do not have the required permissions to view the files attached to this post.
kev1n
nuBuilder Team
Posts: 4292
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: nubuilder compatibility with php 8.2 ? Prerequisites ?

Unread post by kev1n »

Hi,

This has already been fixed in Github:

https://github.com/nuBuilder/nuBuilder- ... d725bc444d
yvesf
Posts: 315
Joined: Sun Mar 14, 2021 8:48 am
Location: Geneva
Has thanked: 87 times
Been thanked: 11 times

Re: nubuilder compatibility with php 8.2 ? Prerequisites ?

Unread post by yvesf »

Thx Kev1n. With this fix, it means that PHP 8.2 is supported which is an excellent news
yvesf
Posts: 315
Joined: Sun Mar 14, 2021 8:48 am
Location: Geneva
Has thanked: 87 times
Been thanked: 11 times

Re: nubuilder compatibility with php 8.2 ? Prerequisites ?

Unread post by yvesf »

How could I know that without disturbing you ?
kev1n
nuBuilder Team
Posts: 4292
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: nubuilder compatibility with php 8.2 ? Prerequisites ?

Unread post by kev1n »

nuBuilder has been tested with php 8.2+ and I am not aware of any php 8.2 related bugs reported in the past.

PHP deprecation messages (like the one you reported) are essentially warnings, not critical errors.
They indicate that a function, feature, or language construct is outdated and may be removed in future versions of PHP. This means your application will likely run normally for now, but depending on your settings, these warnings might be displayed in the browser.

To hide PHP errors on a WAMP server, follow these steps:

1. Open your php.ini file.
2. Find the following line:

Code: Select all

   error_reporting = E_ALL

3. Replace it with:

Code: Select all

   error_reporting = E_ALL & ~E_DEPRECATED

4. Restart your WAMP server.
Post Reply