-
Find a way to split functionality out so that global templates can be used with Settings without requiring the authentication implementation. Might need to consider making these separate libraries.
-
**Describe the bug**
Documentation at https://codeigniter4.github.io/userguide/libraries/caching.html#remember clearly outlines a remember() method, but is not actually implemented. Throwing `Call to…
-
Thank you very much for your good work
However when I try installing the library I get the following composer error:
`[InvalidArgumentException] …
-
In codeigniter4 getNumRows() should be used instead of num_rows so please replace
`if($q->resultID->num_rows`
with
`if($q->getNumRows()`
in the files in the hdz/app/Libraries directory.
-
Hello.
I noticed while reading #4807.
The documentation(https://codeigniter4.github.io/userguide/libraries/sessions.html?highlight=ci_sessions) specifies `timestamp`.
```php
CREATE TABLE IF …
-
**Describe the bug**
Timestamp of session data, saved in database, is always set to 0000-00-00 00:00:00
**CodeIgniter 4 version**
CI 4.1.3
**Affected module(s)**
system/Session/Handlers/Datab…
-
I see this library to be useful in my project and tried it today. Having hiccups on getting the latest updates on other directories, though. I tried to confirm this with both my installer and Composer…
-
**Which branch are you using?**
4
**What commit hash are you on?**
Attempt updating to the latest commit on your branch.
**What CodeIgniter version are you using?**
4.1.1
**What PHP version…
-
# Bug report
PHPStan is crashing during analysis that includes a controller trait from the framework. PHPUnit tests pass fine using the trait and I can see nothing else about the trait that would c…
-
hi there!
validation with more than 1 level only validates the first match.
Example:
```php
// rule
'bar.*.foo' => [
'rules' => 'required'
]
// data
"bar" => [
[
'foo' => …