cola
cola

Reputation: 12466

What's the easiest/correct/safest way to upgrade from cakephp-2.0.2 to cakephp-2.0.3?

The project was developed with cakephp-2.0.2.

Now i'm going to upgrade it to cakephp-2.0.3.

What's the easiest and safest way to do it ?

Upvotes: 0

Views: 244

Answers (2)

mark
mark

Reputation: 21743

whats the big deal? simply replace the two core folders. run all tests and apply corrections where necessary.

Upvotes: 1

RichardAtHome
RichardAtHome

Reputation: 4313

You can either:

Remove /cake in your 2.0.2 install and replace it the /cake directory of 2.0.3

or (preferable):

Install cake 2.0.3 to a new location

Copy 2.0.2 /app to the new installation. If you have any custom files in /plugins or /vendors they'll need to be moved too.

(Don't forget to empty the cache directories in /app/tmp/cache - leave the directories intact, just remove any files in them).

Upvotes: 2

Related Questions