User Profile

User
 ntemple
Location
 Louisville, Ky.
Time Zone
 (GMT -5): USA Eastern, Bahamas, Canada Eastern, Colombia, Haiti, Panama
URL
 http://www.nicktemple.com/

Recent Comments

Posted 30/11/-0001 12:00am
Great article, a few notes:

To fix CSS (and other paths) you may need add:
define('WEBROOT_DIR', 'cakeApp1');

(this may not be required in all cases, it seems to be the case if using symlinks to create the structure)

You can install (for example) cake 1.2 parallel to the top cake directory, for example:

/cake
/cake12
/APPS

If you do that, you can then test your app just by changing the core path:

define('CAKE_CORE_INCLUDE_PATH', DS.'home'.DS.'username'.DS.'cake12');

Great for testing out compatibility between two (or more) versions of the framework.