![]() |
New XAMPP release 7.4.13, 8.0.0-0 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Lounge (https://forum.codeigniter.com/forumdisplay.php?fid=3) +--- Thread: New XAMPP release 7.4.13, 8.0.0-0 (/showthread.php?tid=78118) |
New XAMPP release 7.4.13, 8.0.0-0 - InsiteFX - 12-03-2020 Just an update I tried the XAMPP 8.0.0 and it keeps throwing a missing extension error from CodeIgniter but it doe's not tell you which extension is missing.
The XAMPP 7.4.13 Is running fine here. RE: New XAMPP release 7.4.13, 8.0.0-0 - sammyskills - 12-04-2020 What version of CodeIgniter did you test with? RE: New XAMPP release 7.4.13, 8.0.0-0 - InsiteFX - 12-04-2020 XAMPP 8.0.0 It is telling me an Error on the userAgent and that the intl extension is missing when I know it is there. I just went back to version 7.4.13 Even tried the Windows download version of php 8.0.0 RE: New XAMPP release 7.4.13, 8.0.0-0 - InsiteFX - 12-05-2020 Many thanks to @ivantcholakov for his fixes. Use: XAMPP 8.0.0 Codeigniter 4 Developer from GitHub Make these changes to the system files (which you should never do!), but will get it running. PHP Code: // Change PHP Code: // Change And this is the one that had me stumped for awhile on Windows 10 Pro x64. I had the extension=intl un-remarked in the extension section of php.ini but CodeIgniter kept telling me it was not installed. So here is the fix, you also have to add the extension=intl to the php.ini module section. See Code below this is as far as I know only for Windows. Code: ;;;;;;;;;;;;;;;;;;;;;; It is now running on Windows 10 Pro x64 RE: New XAMPP release 7.4.13, 8.0.0-0 - InsiteFX - 12-12-2020 To all users for now I would just stick to php 7.4.13 and not use php 8.0.0 it has to many errors and warnings. CodeIgniter 4 is not made to run on php 8.0.0. |