You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During debugging I came to the conclusion that the problem lies in CodeIgniter\Config\BaseConfig:147.
Not sure how to fix this correctly. My temporary workaround:
replace
$value = getenv($property);
with
if ($property=='path') {
return null;
}
$value = getenv($property);
Describe the bug
In every request that creates a new cookie, the cookie path is replaced with the system PATH env variable.
CodeIgniter 4 version
develop
Affected module
CodeIgniter\Config\BaseConfig
Steps to reproduce
Expected behavior
Context
The text was updated successfully, but these errors were encountered: