![]() |
So I solved the problem but its a terrible solution. I made a change in the frameworks system code and it works like a charm.
File: /vendor/codeigniter4/framework/system/Database/MySQLi/Connection.php I changed this code: Code: public function connect(bool $persistent = false) To this : Code: public function connect(bool $persistent = FALSE) Essentially it was the socket having an empty string that was the problem. I hope there is a better way to set this setting that I just don't know about. |
Messages In This Thread |
An uncaught Exception was encountered - by ChicagoPhil - 03-20-2022, 12:22 AM
RE: An uncaught Exception was encountered - by kenjis - 03-20-2022, 04:31 AM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-20-2022, 09:11 AM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-20-2022, 12:45 PM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-20-2022, 06:17 PM
RE: An uncaught Exception was encountered - by InsiteFX - 03-21-2022, 12:47 AM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-21-2022, 08:01 AM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-21-2022, 05:57 PM
RE: An uncaught Exception was encountered - by kenjis - 03-21-2022, 07:03 PM
RE: An uncaught Exception was encountered - by ChicagoPhil - 03-22-2022, 01:16 PM
RE: An uncaught Exception was encountered - by dmerns - 03-18-2024, 01:39 PM
|