CakePHP
Downloads
Latest Release
CakePHP 1.2
Download
|
Tickets
CakePHP 1.3
Download
|
Tickets
CakePHP 2.0
Tickets
Documentation
API
1.1
|
1.2
|
1.3
|
2.0
Book
1.1
|
1.2
|
1.3
|
2.0
Tickets
Translations
Community
Bakery
Contributors
Google Groups
Logo
Planet
Q & A
TV (Screencasts)
Services
Certification
Consultation
Support
Training
Login
Register
About CakePHP
Donate
Find
Category
News
Articles
Code
Case Studies
Tutorials
General Interest
Components
Helpers
Models
Plugins
Snippets
Behaviors
The Bakery
Everything CakePHP
All articles
Categories
Users
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.
Report this
View article
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.