Instructions and scripts provided here are open for testing and feedback, and for eZ Enterprise users eZ will take care about bugs over support, however until 2017 when features like custom tags are in place, and community provides feedback on how this works "in the wild", this will continue to be labeled as beta. Topics you should be aware of when planning an upgrade:
|
Instructions for upgrading from eZ Publish to eZ Platform and eZ Studio is in preview starting release 16.02. The status of the upgrade is:
|
If you are migrating from a legacy eZ Publish version, this page contains the information you need. However, first have a look at an overview of the process in Migration from eZ Publish. |
This section describes how to upgrade your existing eZ Publish Platform 5.4/2014.11 installation to eZ Platform and eZ Studio. Make sure that you have a working backup of the site before you do the actual upgrade, and that the installation you are performing the upgrade on is offline.
The easiest way to upgrade the distribution files is to extract a clean installation of eZ Platform / eZ Studio to a separate directory.
If you have code in src folder, move that over:
<old-ez-root>/src => <new-ez-root>/
src
Assuming you have own composer packages (libraries and bundles, but not eZ Publish legacy packages), execute commands like below to add them to new install in <new-ez-root>:
composer
require
--no-update
"vendor/package:~1.3.0"
Adapt the command with your vendor
, package
, version number, and add "–dev"
if a given package is for dev use. Also check if there are other changes in composer.json
you should move over.
While no longer bundled, the XmlText Field Type exists and is needed to perform migration from eZ Publish's XmlText to the new docbook-based format used by RichText Field Type. From <new-ez-root> execute:
composer
require
--no-update --dev
"ezsystems/ezplatform-xmltext-fieldtype:^1.1.0
"
To move over your own custom configurations, follow the conventions below and manually move the settings over:
<old-ez-root>/ezpublish/config/parameters.yml => <new-ez-root>/app/config/parameters.yml
<old-ez-root>/ezpublish/config/config.yml => <new-ez-root>/app/config/config.yml
<old-ez-root>/ezpublish/config/ezpublish.yml => <new-ez-root>/app/config/ezplatform.yml
When moving configuration over, be aware that as of 5.4.5 and higher, repository configuration has been enhanced to allow configuring storage engine and search engine independently.
|
In the default configurations in ezplatform.yml you'll find existing siteaccesses like site, and depending on installation perhaps a few others, all under site group site_group. Make sure to change those to what you had in ezpublish.yml to avoid issues with having to login to your website, given user/login policy rules will need to be updated if you change names of siteaccess as part of the upgrade. |
Move over registration of bundles you have from src and from composer packages, from old to new kernel:
<old-ez-root>/ezpublish/EzPublishKernel.php => <new-ez-root>/app/AppKernel.php
Binary files can simply be copied from the old to the new installation:
<old-ez-root>/web/var[/<site_name>]/storage => <new-ez-root>/web/var[/<site_name>]/storage
In the eZ Publish Platform 5.x install |
Since writable directories and files have been replaced / copied, their permissions might have changed. Re-apply permissions as explained in the installation instructions.
When that is done, execute the following to update and install all packages from within <new-ez-root>
*:
composer update --prefer-dist
At the end of the process, you will be asked for values for parameters.yml not already moved from old installation, or new (as defined in parameters.yml.dist). |
Add the following new bundle to your new kernel file, <new-ez-root>/app/AppKernel.php:
new EzSystems\EzPlatformXmlTextFieldTypeBundle\EzSystemsEzPlatformXmlTextFieldTypeBundle(),
Import to your database the changes provided in one of the following files, optionally read inline comments as you might not need to run some cleanup queries:
MySQL: <new-ez-root>/vendor/ezsystems/ezpublish-kernel/data/update/mysql/dbupdate-6.1.0-to-6.2.0.sql
Postgres: <new-ez-root>/vendor/ezsystems/ezpublish-kernel/data/update/postgres/dbupdate-6.1.0-to-6.2.0.sql
Instructions on purpose does not use |
For migrating content from the XmlText format to the new RichText format, a migration script exists, execute the following from <new-ez-root>:
php app/console ezxmltext:convert-to-richtext -v
The migration script is currently in beta, which is why command example is suggested with verbose flag. Feedback on how it works and on how we can improve it is welcome on the repository. |
If you have Page field (ezflow) content and an eZ Enterprise subscription, you can use a script to migrate your Page content to eZ Studio Landing Page. See Migrating legacy Page field (ezflow) to Landing Page (Enterprise) for more information.
If you use Varnish, the recommended Varnish (3 and 4) VCL configuration can be found in the doc/varnish
folder. See also the Using Varnish page.
The officially recommended virtual configuration is now shipped in the doc
folder, for both apache2 (doc/apache2
) and nginx (doc/nginx
). Both are built to be easy to understand and use, but aren't meant as drop-in replacements for your existing configuration.
As was the case starting 5.4, one notable change is that SetEnvIf
is now used to dynamically change rewrite rules depending on the Symfony environment. It is currently used for the assetic production rewrite rules.
Assets from the various bundles need to be made available for the webserver through the web/ document root, execute the following commands from <new-ez-root>:
php app/console assets:install --env=prod --symlink php app/console assetic:dump --env=prod |