![]() |
CI Version and first steps - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: CI Version and first steps (/showthread.php?tid=90951) |
CI Version and first steps - frank2342 - 05-27-2024 Hello, I have taken over a project that was created with CI and is unfortunately very poorly documented. Previously PHP7.4 was used, now PHP8.3 is to be used. Since I currently have 0 experience with CI, the first question I have is: 1. which CI version was used and where can I find it? I can't find “@version”, only “@since” 2. is an update necessary (I think so, because there are many “deprecated” warnings) and how time-consuming is an update? Greetings, Frank Edit: PHP5.6 was used RE: CI Version and first steps - ozornick - 05-27-2024 See version in https://github.com/codeigniter4/CodeIgniter4/blob/b1e2366c1cb11a1af76befde4bcd441093ff0d8b/system/CodeIgniter.php#L59 RE: CI Version and first steps - InsiteFX - 05-27-2024 If you have a running project just do this to see the CodeIgniter Version. PHP Code: <?php echo CI_VERSION; ?> |