CodeIgniter Forums
v4.4.4 bug fix released - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2)
+--- Thread: v4.4.4 bug fix released (/showthread.php?tid=89046)



v4.4.4 bug fix released - kenjis - 12-28-2023

We are pleased to announce the release of v4.4.4.

This release fixes 30 small bugs including 4 breaking changes.
Upgrade with caution.

Also you must update the following files to show correct error messages:
- app/Views/errors/cli/error_exception.php
- app/Views/errors/html/error_exception.php

ChangeLog: https://codeigniter.com/user_guide/changelogs/v4.4.4.html
Upgrading Guide: https://codeigniter.com/user_guide/installation/upgrade_444.html


RE: v4.4.4 bug fix released - InsiteFX - 12-28-2023

Thank you CodeIgniter Development Team for your hard work.


RE: v4.4.4 bug fix released - ALTITUDE_DEV - 12-29-2023

Oh yeah thanks Team, CMS updated, perfect, so how to fix this error please ? i use the localhost:8080/fr for my project. the hotreload not working
[Image: yfubCH7.png]


RE: v4.4.4 bug fix released - kenjis - 12-29-2023

I don't know why you don't have the route for hot reloading.
It is defined in app/Config/Events.php.
https://github.com/codeigniter4/CodeIgniter4/blob/c85b65c38b7dcf8847ceb5f2a046cbe390c29383/app/Config/Events.php#L50


RE: v4.4.4 bug fix released - ALTITUDE_DEV - 12-30-2023

(12-29-2023, 03:55 PM)kenjis Wrote: I don't know why you don't have the route for hot reloading.
It is defined in app/Config/Events.php.
https://github.com/codeigniter4/CodeIgniter4/blob/c85b65c38b7dcf8847ceb5f2a046cbe390c29383/app/Config/Events.php#L50

I also have it in my event, my system folder is up to date on version 4.4.4 without errors in PHP 8.3.0 logs. I launch my app via 'php spark server' which itself launches: http://localhost:8080, redirecting me to /fr or /en with multilingual support.

Did I miss a step? Big Grin
Thank you for your help (it's the only bug I encounter so far).


RE: v4.4.4 bug fix released - kenjis - 12-30-2023

Check your route definitions.
Maybe a route with wildcard ({locale}) has higher priority than the hot reloading route __hot-reload.


RE: v4.4.4 bug fix released - ALTITUDE_DEV - 12-30-2023

(12-30-2023, 12:54 AM)kenjis Wrote: Check your route definitions.
Maybe a route with wildcard ({locale}) has higher priority than the hot reloading route __hot-reload.

I understood and fixed the issue. Here are my associated commits. The hotbar does not take into account the CI locale.

First commit for fix PHP in Config/Event.php :  https://github.com/codeigniter4/CodeIgniter4/pull/8391
And second commit for fix JS toolbar : https://github.com/codeigniter4/CodeIgniter4/pull/8390