LPH
Well-known member
The following error happens in PhpStorm terminal when attempting to build an addon.
Line 113 is a conditional.
I've switched off of 8.1 and back to 7.4.16, restarted the server, IDE, and the error continues.
Does anyone have any other suggestions?
Code:
Fatal error: Uncaught Error: Call to undefined function mysqli_report() in C:\MAMP\htdocs\community\src\XF.php:113
Stack trace:
#0 C:\MAMP\htdocs\community\src\XF.php(75): XF::standardizeEnvironment()
#1 C:\MAMP\htdocs\community\cmd.php(12): XF::start('C:\\MAMP\\htdocs\\...')
#2 {main}
thrown in C:\MAMP\htdocs\community\src\XF.php on line 113
Line 113 is a conditional.
PHP:
if (PHP_VERSION_ID >= 80100)
{
mysqli_report(MYSQLI_REPORT_OFF);
}
I've switched off of 8.1 and back to 7.4.16, restarted the server, IDE, and the error continues.
Does anyone have any other suggestions?