WebsiteBaker Community Forum
WebsiteBaker Support (2.13.x) => General Help & Support => Topic started by: CodeALot on January 17, 2025, 10:02:34 AM
-
Check line 157 in /modules/sysinfo/funcs/permissions.php
Original line:
$str =(array_key_exists(octdec($t),$ts))?$ts[octdec($t)]{0}:'u';
Corrected line for PHP 8.3.x:
$str = (array_key_exists(octdec($t), $ts)) ? $ts[octdec($t)][0] : 'u';
-
This is v0.4.1 right?
Had this fixed for me in
0.4.2 - 02.Apr.2021
- fixed curly braces message in permission.php
Ruud, its time for an update. ;D
-
You're right. The version on Ruud's page is 0.4.1, and that was this fix is for.
Never mind me, sorry to interrupt :)
-
one more... in modules/sysinfo/funcs/mysqlinfo.php in Ln 23
since PHP 8.1.0: Calling mysqli_get_client_i nfo() with the mysql argument has been deprecated
Original from v0.4.1
$client_info = mysqli_get_client_info($database->DbHandle);
change to
$client_info = mysqli_get_client_info();
-
had this done for me in 2023. but not written in the info.php :(
Seems the WebsiteBaker News tab needs some help:
Failed loading XML
- Start tag expected, '<' not found