I have one more problem. I am working on migrating one big system (what is made in plain php/mysql) to CakePHP. In essence, there is two systems – one main system and second is placed in “/production”. Booth have own UI, data is importing/exporting between DB and so on. In existing system there is no problem with that. But in CakePHP I don’t know where to put this second system, to access it like it is now “/production”. In webroot? or in plugins?
Thanks.
“where to put this second system”: probably the same places as the main system: controllers, models and views folders; if you want to migrate to CakePHP.
“to access it like it is now “/production”: You can use prefix routing: http://book.cakephp.org/view/950/Prefix-Routing
Or if I misunderstood you, and you want to keep the code intact: it should be in the Vendor folder, but with that way, your 2 systems are not in control anymore.
The plugins are actually Cakephp apps that can be used in your app.