by Ben Edmunds
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 than you could expect.
Documentation is located at http://benedmunds.com/ion_auth/
There are 2 ways to install this package.
- Move files from this package to the corresponding folder structure:
CI # → Root Directory
└── application/
├── config/
│ └── ion_auth.php
├── controllers/
│ └── Auth.php
├── libraries
│ ├── Bcrypt.php
│ └── Ion_auth.php
├── models
│ └── Ion_auth_model.php
└── views/
└── auth/ # → Various view files
- Move files from this package to the corresponding third_party structure:
CI # → Root Directory
└── application/
├── controllers/
│ └── Auth.php
├── third_party/
│ └── ion_auth/
│ ├── config/
│ │ └── ion_auth.php
│ ├── libraries
│ │ ├── Bcrypt.php
│ │ └── Ion_auth.php
│ └── models
│ └── Ion_auth_model.php
└── views/
└── auth/ # → Various view files
Then in your controller, example Auth.php
add the package path and load the library like normal
$this->load->add_package_path(APPPATH.'third_party/ion_auth/');
$this->load->library('ion_auth’);
Or autoload by adding the following to application/config/autoload.php
$autoload['packages'] = array(APPPATH.'third_party/ion_auth');
CodeIgniter v2 requires the class file names to be lowercase. 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
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).
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.
Username: [email protected] Password: password
It is highly recommended that you use encrypted database sessions for security!
It is recommended that you add your identity column as a unique index.
Time Based One-Time Password (TOTP) - There is a Time Based One-Time Password (TOTP) implementation compatible with Google Authenticator available. Feature branch maintained by biscofil and is available at https://github.com/benedmunds/CodeIgniter-Ion-Auth/tree/otp
If you think you've found a bug please Create an Issue.
If you need a customization or help implementing Ion Auth into your project please Email Me for Consulting Information.
If your company would like a support contract or service agreement please Reach Out to discuss available options.
If you're having an issue with CodeIgniter or for general help with development I recommend checking out the CodeIgniter Forums.
If you think you've found a bug please Create an Issue.
Thanks,
-Ben Edmunds
benedmunds.com
@benedmunds