CodeIgniter4
CodeIgniter4 copied to clipboard
Open Source PHP Framework (originally from EllisLab)
``` There was 1 failure: 1) CodeIgniter\HTTP\ResponseTest::testSetDateRemembersDateInUTC Failed asserting that two strings are identical. --- Expected +++ Actual @@ @@ -'Sat, 11 Mar 2000 04:25:54 GMT' +'Sat, 11 Mar 2000...
### PHP Version 7.4 ### CodeIgniter4 Version 4.1.5 ### CodeIgniter4 Installation Method Composer (using `codeigniter4/appstarter`) ### Which operating systems have you tested for this bug? Windows ### Which server did...
**Problem** System does not change incoming request locale with overriding it from outer source (not App config, like database) using filter approach **Describe the bug** - all my routes has...
At some point we should make sure we are implementing these compliance definitions: * https://www.php-fig.org/psr/psr-7/ * https://www.php-fig.org/psr/psr-17/
``` There was 1 failure: 1) CodeIgniter\HTTP\ResponseTest::testSetLastModifiedWithDateTimeObject Failed asserting that two strings are identical. --- Expected +++ Actual @@ @@ -'Sat, 11 Mar 2000 02:29:41 GMT' +'Sat, 11 Mar 2000...
### PHP Version 8.0 ### CodeIgniter4 Version 4.1.5 ### Which operating systems have you tested for this bug? Linux ### Which server did you use? apache ### Database _No response_...
**Description** - refactor variable name in system/Database/BaseBuilder.php - fix insertBatch() / updateBatch() / setUpdateBatch() user guide - add tests for insertBatch() / updateBatch() with array of objects param ### insertBatch()...
CodeIgniter's "database driver for sessions" uses advisory locking to serialize read and write access to session data. Specifically in our case, it calls `pg_advisory_lock($session_id)` on session's `read()` callback and doesn't...
A constant headache, particularly with testing, is running a migration that modifies a table from another migration but that table isn't created yet because the other migration did not run....
It is not possible to get and forward all headers having multiple values of a response when performing a CURLRequest. My experience was with 'set-cookie' header, but after investigating it...