** If you’ve found this article through a Google search, visit my CakePHP 2.x Login System for an updated version of this article. **
In today’s article, I am going to discuss how simple it is to setup a login system with CakePHP. As the title says, it should be less than 10 minutes. In theory if you copy and paste the code below, it should be fully functional in less than 5.
Ready, set, let’s bake.
Step 1, create a users table:
[code]CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL auto_increment,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`email` varchar(45) NOT NULL,
`password` varchar(45) NOT NULL,
`created` datetime default NULL,
`modified` datetime default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
[/code]
The above is a very basic users table. We will be using an email address for the login instead of a username. We’ll do this to demonstrate more features of the Auth setup in CakePHP.
Step 2, update your users_controller.php:
[code]/**
* The AuthComponent provides the needed functionality
* for login, so you can leave this function blank.
*/
function login() {}
function logout() {
$this->redirect($this->Auth->logout());
}
[/code]
The above is just a snippet of our users controller. As you can see, we create a blank login function because CakePHP takes care of everything for us. Our logout function, logs us out and redirects back to the login page that we will specify shortly.
Step 3, create app/views/users/login.ctp:
[code]<?php
if ($session->check(‘Message.auth’)) $session->flash(‘auth’);
echo $form->create(‘User’, array(‘action’ => ‘login’));
echo $form->input(’email’);
echo $form->input(‘password’);
echo $form->end(‘Login’);
?>
[/code]
This code creates a basic form with email address and password. If an auth message exists, it will be displayed above the form. This is usually where our error messages are displayed about invalid login or access denied, etc…
Step 4, this step can be completed in an individual controller if you only require security in one controller, however, if you need it on multiple controllers, I would suggest adding this to your app_controller.php.
[code]class AppController extends Controller {
var $components = array(‘Auth’);
function beforeFilter() {
$this->Auth->userModel = ‘User’;
$this->Auth->fields = array(‘username’ => ’email’, ‘password’ => ‘password’);
$this->Auth->loginAction = array(‘admin’ => false, ‘controller’ => ‘users’, ‘action’ => ‘login’);
$this->Auth->loginRedirect = array(‘controller’ => ‘users’, ‘action’ => ‘index’);
}
}
[/code]
As it always seems to be with CakePHP, the above contains some more simple code. We start by including the Auth Component. Then in our beforeFilter() function we tell CakePHP how to configure our security. The first line tells Cake to use the User model. Next, we configure it to use email and password as the fields oppose to the default of username and password. It’s important to note, if you wish to change only one of the fields, you are still required to update both. Next we tell CakePHP to redirect to the users controller and the login function when we are not logged in. Finally, we tell CakePHP when we have successfully logged in to redirect to the index function of our users controller.
A couple of things to note, we do not specify any allow() pages. This means that by default ALL of our functions require authorization.
Because we’ve specified the above in our app_controller, we can easily override the defaults on individual controllers for more flexibility. For example, here is a snippet of code from a users_controller.php that allows the add function, because we want people to be able to register without logging in:
[code]function beforeFilter() {
$this->Auth->allow(‘add’);
parent::beforeFilter();
}
[/code]
The above code, tells CakePHP to allow the add function in our users_controller.php. Then it calls the parent beforeFilter function to setup the remaining Auth code.
That’s it, authorization is setup. I remember feeling overwhelmed by creating a login script with Auth when I first started. It wasn’t until I tried it that I realized how easy it was, hopefully you will feel the same way now.
Pingback: Fantasy Football Faux Paux » Blog Archive » Harbaugh: 49ers will ‘kick the tires’ on veteran Culpepper
Pingback: SZI Outsourcing Client Business Relationship ? The Business … | Space News Articles
Pingback: How to remove skin tags
Pingback: secrets 4 loss weight
Pingback: remote virus help
Pingback: Goozle Zone
Pingback: Ania Antonette Quisumbing
Pingback: bad credit loans
Pingback: guayabera san antonio
Pingback: top songs download website
Pingback: one buck resume
Pingback: End Your If CakePHP 2.x Login System | End Your If
Pingback: payday loans online
Pingback: ultimate power profits