I've updated from CodeIgniter 4.3.6 to 4.4.1. But it seems much slower. Like 2 seconds more load time. I've checked it on the same environment.
Is there a setting I missed? I've added setAutoRoute on true to Routes.php (and $autoRoutesImproved in Feature.php on true as well)
Also, this doesn't seem to work anymore:
Code:
$this->Invoices = new Invoices_model();
So, I changed to this:
Code:
$this->Invoices = new \App\Models\Invoices_model();
Which all works fine, but it's slower. The rest is pretty much the same as it was before. Hope someone can help me.