cakephp

Translate a nested heirarchical array into another heirarchical array

August 17, 2008

Yes, that does sound like a pointless title. Let me explain the situation, we have a self referential model, Pages, which has child pages and a parent page. Because I’m using CakePHP for this project I have added the Tree Behaviour to the model also which is really handy, but you don’t need that behaviour [...]

CakePHP deployment errors

August 12, 2008

If you have set cakephp up so that DocumentRoot of apache is pointing to app/webroot/ you might have encountered a couple of errors like these – not the first time you set it up, but consequent attempts to remove and replace the files.

CakePHP redirect to admin methods

July 30, 2008
Thumbnail image for CakePHP redirect to admin methods

If you have admin routing set: Configure::write(’Routing.admin’, ‘admin’); Redirecting between admin_* and non admin functions inside the controller, or linking to admin_* functions from non admin views can throw an error unless you pass an admin variable in the URL.