Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pre-configured CakePHP with common things like authentication

Tags:

php

cakephp

Has anyone come across a CakePHP system with pre-configured things like authentication with all the login/logout forms, etc? Most websites have some sort of a basic authentication system on top of which everything is built. I was hoping to not go about re-inventing the wheel setting up the most common pages like login, logout, forgot-password. Any help?

like image 909
Mridang Agarwalla Avatar asked Nov 06 '22 07:11

Mridang Agarwalla


1 Answers

CakePHP Cookbook is a good place to start. There is a sample aplication with the authentication stuff done:

http://book.cakephp.org/view/1543/Simple-Acl-controlled-Application

like image 171
Coquevas Avatar answered Nov 09 '22 03:11

Coquevas