Page 1 of 1
nubuilder compatibility with php 8.2 ? Prerequisites ?
Posted: Sat Feb 24, 2024 9:14 pm
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
Re: nubuilder compatibility with php 8.2 ? Prerequisites ?
Posted: Sat Feb 24, 2024 11:06 pm
by kev1n
Re: nubuilder compatibility with php 8.2 ? Prerequisites ?
Posted: Sun Feb 25, 2024 12:14 am
by yvesf
Thx Kev1n. With this fix, it means that PHP 8.2 is supported which is an excellent news
Re: nubuilder compatibility with php 8.2 ? Prerequisites ?
Posted: Tue Feb 27, 2024 10:34 pm
by yvesf
How could I know that without disturbing you ?
Re: nubuilder compatibility with php 8.2 ? Prerequisites ?
Posted: Thu Feb 29, 2024 7:41 am
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:
3. Replace it with:
Code: Select all
error_reporting = E_ALL & ~E_DEPRECATED
4. Restart your WAMP server.