Recipe hangs and claims "commerce_product_variation" entity type does not exist.

Created on 26 July 2025, about 1 month ago

Problem/Motivation

Started with a clean version of Drupal 11.2.

The recipe made it through 19 out of 23 steps before hanging a bit and then ending with this erro:

In EntityTypeManager.php line 139:
                                                                
  The "commerce_product_variation" entity type does not exist.  

Steps to reproduce

composer require drupal/cwo_demo
 cd web
   ../vendor/drush/drush/drush recipe ../recipes/cwo*/

TIA!

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States bogdog400

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @bogdog400
  • πŸ‡ΊπŸ‡ΈUnited States bogdog400

    When I enable the modules manually, I start getting this error:

    The configuration 'commerce_price.commerce_currency.USD' exists already and does not match the recipe's configuration
    
  • πŸ‡ͺπŸ‡ΈSpain interdruper

    @bogdog400, try to copy your current config commerce_price.commerce_currency.USD.yml to the recipe config folder and/or use 'strict:false' in recipe.yml:

    name: Commerce Webform Order Demo
    description: Initial configuration for Commerce Webform Order
    type: Site
    install:
      - commerce_payment_example
      - commerce_purchasable_entity
      - commerce_webform_order
      - webform_entity_handler
    config:
      strict: false
      import:
        commerce_cart: '*'
        commerce_checkout: '*'
        commerce_order: '*'
        commerce_payment: '*'
        # @todo Remove when product is not required by cart.
        commerce_product: '*'
        commerce_store: '*'
    
Production build 0.71.5 2024