-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
session use redis Adapter can't to destroy the data in php7 #12326
Comments
did u finish this bug? |
This is a BUG. |
What you mean no script to reproduce ? Then how to recreate this issue without any code ? For example someone is not using redis adapter - then he doesnt have such a bug. Script to reproduce is surely needed. |
There's no need to recreate it. Look in source code. If your brain works fine I'll see that there're absolutely different behaviours of |
I'm closing this issue due to the lack of any reaction. I'll open it again if the need arises |
I also happen to facing this, i think this is because the implementation of destroy between in public function destroy(boolean removeData = false) -> boolean but in public function destroy(string sessionId = null) -> boolean and yet in the php stub, public function destroy($removeData = false) Can you tell what kind of script you need to reproduce? I'd like to help to help if possible. The only way to destroy the session is by remove one by one, or using |
also, in both adapter.zep and libmemcached.zep, this is implemented in destroy function. for key, _ in _SESSION {
unset _SESSION[key];
} yet in |
@gamalan I'll try to sort out asap |
Fixed in the |
when i use the redis as the session Adapter;
i can't destroy all of the session data
phalcon 3.0.1
php 7
The text was updated successfully, but these errors were encountered: