We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WARNING: setcookie(): Unrecognized key 'lifetime' found in the options array in elFinderSession.php line 227.
session_get_cookie_params() returns a lifetime key that generates a warning in setcookie().
session_get_cookie_params()
lifetime
setcookie()
unset($cParm['lifetime']); before setcookie() fixes it.
unset($cParm['lifetime']);
The text was updated successfully, but these errors were encountered:
bd98e9c
@lianee Thanks! 👍
Sorry, something went wrong.
[php:session] fix #3103 WARNING: setcookie(): Unrecognized key 'lifet…
357bc43
…ime' It is re-patch to fix #3130. see #3130.
nao-pon
No branches or pull requests
WARNING: setcookie(): Unrecognized key 'lifetime' found in the options array in elFinderSession.php line 227.
session_get_cookie_params()
returns alifetime
key that generates a warning insetcookie()
.unset($cParm['lifetime']);
beforesetcookie()
fixes it.The text was updated successfully, but these errors were encountered: