Hi Team,
In my existing bundle after successfully migrated to pimcore v10.6, im getting this error in pimcore 10.6 version migration installer error,
this installer not able find out it in vendor as its using in earlier version, in the current version its not using, so can anyone know which will be the alternative method to use instead of this?
pimcore demo its not used, none of the pimcore doc its given about migration installer, not able to find the solution
If anyone come across this error or know about this? please let me know
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
It looks like the image that you shared was not uploaded successfully. Would you mind uploading it to imgur.com and sharing it here again so that I could see the actual error?
In general, there are a few important steps that you need to do when upgrading to 10v as mentioned here in the docs:
Mainly these ones here:
Update folder structure
Update your project folder structure as per Symfony Flex guidelines. See demo changes here
Migrate legacy module/controller/action configurations to new controller references
You can use
./bin/console migration:controller-reference
to migrate your existing Documents, Static routes and Document Types to the new controller references in the format:AppBundle\Controller\FooController::barAction
.Migrate versions to be compatible with Pimcore X
Documents: If you wish to carry forward Document version files from 6.x to Pimcore X, then it is required run command
pimcore:documents:migrate-elements
to migrate deprecated propertyelements
toeditables
. (only relevant for versions created before 6.7)Data Objects: Please adapt this migration script and execute to migrate to new class Namespaces in your old version files, if you wish to carry forward these files on Pimcore X, e.g.,
AppBundle\\..
toApp\\..
.But I would suggest following all of the changes listed on the documentation page that I’ve shared above.
Let me know how it goes!
Best,
Bobby