![]() |
update the framework to the latest version - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: update the framework to the latest version (/showthread.php?tid=92868) |
update the framework to the latest version - Erepaing - 05-07-2025 I am in the process of updating my CodeIgniter framework from version 4.1.3 to 4.1.4. The process requires me to update incrementally, step by step for each version. I initially attempted to use the "composer update" command, however, it only updated the libraries and not the framework itself. As a result, I am searching for a solution to effectively update the framework to the latest version. RE: update the framework to the latest version - captain-sensible - 05-08-2025 for chnages seee: https://codeigniter.com/user_guide/installation/upgrade_414.html mm well what does the "framework" look like : Code: [andrew@darkstar http]$ tree CI4-CMS -L 1 and what happens when you update with composer ? if you go to in my case web dev apache : [CODE} [andrew@darkstar framework]$ pwd /srv/http/CI4-CMS/vendor/codeigniter4/framework Code: [CODE} if we look at: Code: [andrew@darkstar framework]$ sdiff -Z /srv/http/CI4-CMS/vendor/codeigniter4/framework/app/Config/Paths.php /srv/http/CI4-CMS/app/Config/Paths.php there is a change in Paths.php so basically updating goes to vendor. To make changes in framework, you have to look think about & take files from : /srv/http/CI4-CMS/vendor/codeigniter4/framework into your framework |