My site currently uses Zend Framework 1.8.0, which is over 2 years old. I would like to upgrade to 11.11.11, and I have some problems finding basic guidelines on how to do this smoothly. Is it as simple as rewriting the Zend library / folder with the latest files?
Here are my steps that I plan to take. Did I miss something?
- Download the latest Zend Framework code.
- SSH to the server and copy the / Zend library to / path / to / webapp / library and call something like Zend-1.11 into the folder.
- On our site, put "Site on the service page."
- cd / path / to / webapp, and then back up the current version of Zend, for example. cp -R Zend Zend-old
- mv Zend-1.11 Zend
- Delete "Site deleted for maintenance page"
At this point, the / library / Zend folder will have the latest Zend Framework code, and I would have "Zend-old" to return in case something goes wrong.
Is this a typical upgrade method?
source
share