Uridium Posted October 16, 2021 Posted October 16, 2021 nbbc7.phpnbbc8.php these files are nbbc7 from PHP versions 5.6 up to 7.2 nbbc8 from PHP versions 7.3 up to 8+ put both files in the class/ folder then open up class/pageElement.php change line 10 require("nbbc.php"); TO $ver = (float)phpversion(); if ($ver > 7.3) { require "nbbc8.php"; } else { require "nbbc7.php"; } You can now switch back and forth to any working PHP version from MultiPHP Manager Quote
Dayo Posted November 4, 2021 Posted November 4, 2021 So in GL 2.5.1 when released, I have fixed the issue with NBBC. I have tested on 5.6, 7.4 and 8.0 and it is working with no errors. Just one file will support all versions. 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.