Archive for category CakePHP

CakePHP - Override .htacces to ignore directory

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule    ^manager    -    [L]
RewriteRule    ^pma    -    [L]
RewriteRule    ^fm    -    [L]
RewriteRule    ^$ app/webroot/    [L]
RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

No Comments

CakePHP & Database Migration for Teams

Joes Moss @ http://developwithstyle.com.
Has put together this fantastic little script that virtually acts like version control for your cakephp databases.

Optimal for teams that need to be synce up:
http://github.com/joelmoss/cakephp-db-migrations/tree/master

No Comments

CakePHP: ACL Menu Component

Once again Mark Story saves the day: ACL Menu Component

No Comments