What is the best PHP session wrapper class? #session wrapper
Edit
by Vivek Raghunathan - 9 years ago (2016-03-02)
I need PHP session class along with user management
| I need PHP 5 session class which can be used to store sessions and manage users. |
- 1 Clarification request
1.
by Ganza respice - 7 years ago (2017-04-30) Reply
Ask clarification
2 Recommendations
Burge CMF: Framework to publish managed content
This package is a framework to publish managed content based on CodeIgniter.
It implements MVC classes based on CodeIgniter to implement a blog like modular content management system. It supports:
- Multi-language administration and regular user interfaces
- Multi-user admin environment with ability to set access level for each user
- Default view files for different languages (Persian, and English) and different devices to support fast developing new modules
- Visitor counter module
- Log manager which allows to write, retrieve and also query logs based on log message type
- Manage posts and categories
- File manager
| by Burge Lab package author 280 - 8 years ago (2016-08-01) Comment
you can use user_manager_model of BurgeCMF, and its controller, and you will have all base authentication you need for the users and you can extend it easily. |
Secure PHP Login System: Register and login users using a database via PDO
This class can register and login users using a database via PDO.
It can process the registration of a user given the user name, password, name and email address.
It can also authenticate a user given the user name and password and optionally set a cookie to remember the user name on the next login.
The class starts a session for successfully authenticated users.
It can also log out by ending the user session, send a password reminder message and change the user password.
It also implements a two step login process similar to that of Google's, Facebook's SMS security process.
The user can see they devices they used to log in as well as log out from a device used before.
The class also provides an administration interface to manage users, edit details, see statistics, etc..
| by Manuel Lemos 26695 - 9 years ago (2016-03-03) Comment
This class supports both user registration and login using sessions to store logged user data.
It uses regular sessions to store user data, so it defaults to storing session data in files.
If you wanted to store sessions in another container like databases or memcached so it works well on distributed environments, you need a more specific session wrapper class. |