Question

When I try to install gene/bluefoot on Magento EE 2.3.0 with composer I've got this error :

Problem 1
- Conclusion: don't install gene/bluefoot 1.0.31
- gene/bluefoot 1.0.30 conflicts with magento/magento2-base[2.3.0].
- gene/bluefoot 1.0.30 conflicts with magento/magento2-base[2.3.0].
- magento/magento2-base 2.3.0 conflicts with gene/bluefoot[1.0.30].
- Installation request for gene/bluefoot ^1.0 -> satisfiable by gene/bluefoot[1.0.30, 1.0.31].
- Installation request for magento/magento2-base (locked at 2.3.0) -> satisfiable by magento/magento2-base[2.3.0].

I followed documentation by typing :

composer require gene/bluefoot:^1.0

I saw in composer.json of magento2-base this line :

"conflict": {
    "gene/bluefoot": "*"
 }

Does someone already install this module ?

Was it helpful?

Solution

2.3.1 will introduce the pagebuilder which will replace Bluefoot. But pagebuilder is not available in 2.3.0

If you want 2.3.0 you will have to stick with the plain CMS editor.

OR

which is kind of hacky... fork Magento 2.3.0 and remove the restriction for bluefoot in the composer.json. Then require your forked repo instead of the official one.

But Bluefoot might not work properly!

There is a reason why you aren't allowed to install it.

OTHER TIPS

If you have access you can install it with the following two steps:

set the stability in your composer.json to:

"minimum-stability": "beta"

Then install the page builder:

composer require magento/page-builder-commerce

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top