tags:

views:

39

answers:

4

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?

+2  A: 

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

Coquevas
A: 

How about you build it the way you want and then reuse that in all of your projects.

It's what I do and it is very much in the spirit of OO and MVC.

In no time at all you'll have your own library of modules/functions or whatever you want to call them.

Leo
A: 

PoundCake Control Panel plugin

bancer
A: 

You might find Infinitas interesting. It's a full CMS, but you can probably trim out the core functionality and use that since it's under an MIT license. The names of the main people developing it (ceeram and dogmatic69) are responsible for some of the more interesting (to me) bugs and fixes in the CakePHP bug tracker. This implies that they understand the internals of the framework pretty well.

Try it out and let us know in a comment if it'll function for what you need.

michaelc