CodeIgniter 4.2.1 - 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: CodeIgniter 4.2.1 (/showthread.php?tid=82144) Pages:
1
2
|
CodeIgniter 4.2.1 - MGatner - 06-16-2022 A quick announcement: version 4.2.1 just dropped! This is the first of our renewed effort and splitting bug fixes from enhancements and getting the patches out more frequently. Lots of good fixes in there - check out the changelog (https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md) and always visit the Upgrade Guide for more info (https://codeigniter4.github.io/CodeIgniter4/installation/upgrading.html)! RE: CodeIgniter 4.2.1 - luckmoshy - 06-16-2022 if -live server for Apaches on line (49) preload = private array $paths = [ I get red alert array why? RE: CodeIgniter 4.2.1 - kenjis - 06-16-2022 Thank you always, @MGatner ! @luckmoshy What's "-live server for Apaches"? RE: CodeIgniter 4.2.1 - dase230 - 06-16-2022 in version 4.2.1 it is no longer compatible with sqlserver since in version 4.1.9 I connect normally I get a tcp error when connecting RE: CodeIgniter 4.2.1 - luckmoshy - 06-16-2022 (06-16-2022, 02:07 PM)kenjis Wrote: Thank you always, @MGatner !I mean not in the local server but rather in the live host RE: CodeIgniter 4.2.1 - manager - 06-16-2022 Big thanks to the dev team for the new update! RE: CodeIgniter 4.2.1 - kenjis - 06-16-2022 (06-16-2022, 09:46 PM)luckmoshy Wrote: I mean not in the local server but rather in the live host I got it, then what's "red alert array"? RE: CodeIgniter 4.2.1 - InsiteFX - 06-16-2022 Thank you very much the CodeIgniter Development Team. RE: CodeIgniter 4.2.1 - tgix - 06-17-2022 Itching to get to 4.2.x but alas, too many things to fix in my current 4.1.x projects to dare taking the leap... :-( Anyway - great work Team! Related to the upgrade? The Docs link from the https://codeigniter.com/ page doesn't work - https://codeigniter.com/user_guide/index.html RE: CodeIgniter 4.2.1 - atsanna - 06-17-2022 (06-16-2022, 06:31 PM)dase230 Wrote: in version 4.2.1 it is no longer compatible with sqlserver since in version 4.1.9 I connect normally I get a tcp error when connecting In my development environment, based on docker, using the images
i don't see any problems These are the configurations I use: MySql PHP Code: database.default.hostname = <db_hostname> Postgres PHP Code: database.default.hostname = <db_hostname> MSSQL PHP Code: database.default.hostname = <db_hostname> Oracle PHP Code: database.default.hostname = <db_hostname> |