https://github.com/marcelod/codeigniter-ion-auth
Simple and Lightweight Auth System for CodeIgniter
https://github.com/marcelod/codeigniter-ion-auth
Last synced: 8 months ago
JSON representation
Simple and Lightweight Auth System for CodeIgniter
- Host: GitHub
- URL: https://github.com/marcelod/codeigniter-ion-auth
- Owner: marcelod
- License: mit
- Fork: true (benedmunds/CodeIgniter-Ion-Auth)
- Created: 2015-02-10T15:41:15.000Z (over 11 years ago)
- Default Branch: 2
- Last Pushed: 2015-07-24T02:45:11.000Z (almost 11 years ago)
- Last Synced: 2024-10-02T08:20:53.637Z (over 1 year ago)
- Language: PHP
- Homepage: http://benedmunds.com/ion_auth/
- Size: 1.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
#Ion Auth 2
###The future of authentication
by [Ben Edmunds](http://benedmunds.com)
Redux Auth 2 had a lot of potential. It's lightweight, simple, and clean,
but had a ton of bugs and was missing some key features. So we refactored
the code and added new features.
This version drops any backwards compatibility and makes things even more
awesome then you could expect.
##Documentation
Documentation is located at http://benedmunds.com/ion_auth/
##Installation
Just copy the files from this package to the corresponding folder in your
application folder. For example, copy Ion_auth/config/ion_auth.php to
application/config/ion_auth.php.
###CodeIgniter Version 3 Compatibility
CodeIgniter v3 requires the class names to be ucfirst(). In order to support this follow the standard installation procedures and then either rename the following files or create symlinks
models/ion_auth_model.php => models/Ion_auth_model.php
controllers/auth.php => controllers/Auth.php
###Relational DB Setup
Then just run the appropriate SQL file (if you're using migrations you can
get the migrations from JD here:
https://github.com/iamfiscus/codeigniter-ion-auth-migration).
##Usage
In the package you will find example usage code in the controllers and views
folders. The example code isn't the most beautiful code you'll ever see but
it'll show you how to use the library and it's nice and generic so it doesn't
require a MY_controller or anything else.
###Default Login
Username: admin@admin.com
Password: password
###Important
It is highly recommended that you use encrypted database sessions for security!
###Optimization
It is recommended that you add your identity column as a unique index.
Feel free to send me an email if you have any problems.
Thanks,
-Ben Edmunds
ben.edmunds@gmail.com
@benedmunds