How to update CakePHP from version 0.2.9 to the latest version, with security

1

I've taken a site to administer which is a content manager that was developed in CakePHP in the 0.2.9 version.

I'd like to know the correct and safest way to upgrade to 2.0 and 3.0 .

    
asked by anonymous 31.08.2015 / 20:44

1 answer

2

Unfortunately, there is no migration guide for version 0.2.9 available on the cakephp site, and you may have to make a lot of changes knowing that there have been migrations from 1.2 to 1.3 then to 2.0.2.1.2.2.2.3 ... up to 3.0 so if you go to check what changed in each migrated version compensates more get version 3 and redo the project, in summary you can choose two actions, check all the versions migrated by the modifications, or get the latest version and do based on it.

List of Migrations in v2.0

List of Migrations in v3.0

    
01.09.2015 / 13:25