Basic Migration
The following steps are needed for every migration to Pimcore 5 and should be done before continuing migration either to the Pimcore 4 compatibility bridge or the Symfony Stack.
-
Backup your system!
-
Replace your
composer.json
with this one and re-add your custom dependencies. -
Add
/app/AppKernel.php
from here -
Run
COMPOSER_MEMORY_LIMIT=-1 composer update
If you encounter errors, please fix them until the command works properly. You can use--no-scripts
to install dependencies and then iterate through errors in subsequent calls to save some time. -
Download the Pimcore CLI .phar file and follow these instructions.
-
Refactor
constants.php
and move it toapp/constants.php
-
Refactor
startup.php
and move content either toAppKernel::boot()
orAppBundle::boot()
-
Update system configs in
/var/config/system.php
(this will be done automatically by Pimcore CLI)-
email
>method
=> if''
, change tonull
-
email
>smtp
>ssl
=> if''
change tonull
-
email
>smtp
>auth
>method
=> if''
change tonull
-
email
>smtp
>auth
>password
=> add if not there with value''
-
newsletter
>method
=> if''
change tonull
-
newsletter
>smtp
>ssl
=> if''
change tonull
-
newsletter
>smtp
>auth
>method
=> if''
change tonull
-
newsletter
>smtp
>auth
>password
=> add if not there with value''
-
-
Change document root of your webserver to
/web
directory - document root must not be project root anymore -
At this point, the basic application should work again. Please try to run
bin/console
to see if the console works -
The pimcore-migrations-40-to-54.php script contains all migrations which were introduced from Pimcore 5.0 to 5.4 and are needed when migrating from Pimcore 4. To execute the script, use the following command (making a backup at this stage is strongly recommended):
wget https://gist.githubusercontent.com/brusch/c3e572947a7a7e8523e18e9787cf88c3/raw/da97304ab59a7220ef41e1c09346a5370dda898c/pimcore-migrations-40-to-54.php -O pimcore-migrations-40-to-54.php php pimcore-migrations-40-to-54.php
-
Execute all core migrations from 5.4.x to the latest version, by running the following commands:
./bin/console pimcore:migrations:execute -s pimcore_core 20180724144005 ./bin/console pimcore:migrations:migrate -s pimcore_core
-
Run
composer update
once again to update the autoloader and class maps -
The admin interface of your system should now work again and you can proceed to migrate your application code.
-
Update your .gitignore