Reputation: 341
The site I maintain is currently using Zend Framework 1.8.0, which is over 2 years old. I'd like to upgrade to 1.11.11 and am having some trouble finding basic guidelines for how to pull this off smoothly. Is it as simple as overwriting the library/Zend folder with the latest files?
Here are my steps I plan on taking. Am I missing anything?
At this point, the /library/Zend folder would have the latest Zend Framework code and I'd have "Zend-old" to switch back to in case anything goes wrong.
Is this the typical way to upgrade?
Upvotes: 5
Views: 4671
Reputation: 22926
Things to do before updating Zend Framework:
Upvotes: 4
Reputation: 1
You might also take a look at the ZF-tool. It is not only the Zend lib that might be replaced with a newer version. If you replace the Zend lib you beteer type things like zf show version.
Upvotes: -2
Reputation: 408
I went through a much more extreme upgrade going from Zend 0.70 to 1.11 a few months back. What I did was qualify the new library folder with a version number and use the application.ini setting to switch between the 2 for testing.
so
includePaths.library = APPLICATION_PATH "/../library"
would become
includePaths.library = APPLICATION_PATH "/../library1.11"
I found having both entries and just moving a comment was a lot faster for testing. Good luck with your upgrade!
Upvotes: 2