Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter 4.2.1
#1

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/CodeIgni...ANGELOG.md) and always visit the Upgrade Guide for more info (https://codeigniter4.github.io/CodeIgnit...ading.html)!
Reply
#2

(This post was last modified: 06-16-2022, 12:17 PM by luckmoshy.)

if -live server for Apaches on line (49) preload = private array $paths = [ I get red alert array why?
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply
#3

Thank you always, @MGatner !

@luckmoshy What's "-live server for Apaches"?
Reply
#4

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
Reply
#5

(06-16-2022, 02:07 PM)kenjis Wrote: Thank you always, @MGatner !

@luckmoshy What's "-live server for Apaches"?
I mean not in the local server but rather in the live host
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply
#6

Big thanks to the dev team for the new update!
Reply
#7

(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"?
Reply
#8

Thank you very much the CodeIgniter Development Team.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#9

(This post was last modified: 06-17-2022, 02:01 AM by tgix.)

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
Reply
#10

(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 
  • mcr.microsoft.com/mssql/server:2019-latest
  • mariadb:10.5.3-bionic
  • gvenzl/oracle-xe:21.3.0
  • postgis/postgis:14-3.2

i don't see any problems

These are the configurations I use:

MySql
PHP Code:
database.default.hostname = <db_hostname>
database.default.database = <database name>
database.default.username = <username>
database.default.password = <password>
database.default.DBDriver MySQLi
database
.default.port 3306 


Postgres
PHP Code:
database.default.hostname = <db_hostname>
database.default.database = <database name>
database.default.username postgres
database
.default.password = <password>
database.default.DBDriver Postgre
database
.default.port 5432 


MSSQL
PHP Code:
database.default.hostname = <db_hostname>
database.default.database = <database name>
database.default.username sa
database
.default.password = <password>
database.default.DBDriver SQLSRV
database
.default.port 1433 

Oracle
PHP Code:
database.default.hostname = <db_hostname>
database.default.database = <database name>
database.default.username = <username>
database.default.password = <password>
database.default.DBDriver OCI8
database
.default.port 1521 
Codeigniter 4 - Docker Image [github] [docker hub]
Reply




Theme © iAndrew 2016 - Forum software by © MyBB