skip to Main Content

I am trying to change the default theme for a fresh install of Magento 2.2.4 and the following error was thrown on Save. “Something went wrong while saving this configuration: Area is already set”.

2

Answers


  1. This is known bug in Magento 2.2.4: https://github.com/magento/magento2/issues/14968

    Please refer to the issue on Github on how to solve your problem. You’ll find the fix in this commit: https://github.com/magento/magento2/commit/0dec988872e175e568c2bf4bb29548ab7a4698e5

    Login or Signup to reply.
  2. Magento 2 doesn’t do hotfix releases, unfortunately.
    However, they’ve released an official patch over here: https://magento.com/tech-resources/download (search for MAGETWO-93036).

    Apply this patch by using below command

    patch -p1 < m2-hotfixes/EE-MAGETWO-93036-2018-07-02-07-07-16.patch.

    After applying mention patch then It works perfectly.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search