Tag: Magento 2 Error

Admin design configuration does not save in Magento 2.1.x

Solution Find the file \vendor\magento\module-email\Model\AbstractTemplate.php and on line number 672 replace the if condition if ($storeId) with if ($storeId !== false) Explanation When you are saving the Global Configuration for the Store, you can see in the url that the current scope id is 0 (admin/theme/design_config/edit/scope/default/scope_id/0/) This is important. Now, when you save the configuration,…

Magento 2 intl php extension missing

As we all know Magento 2 is released and every developers are trying to install and learn Magento 2. When you trying to install Magento 2 the most common error used to get for the first time is php extension intl missing. How to check php intl extension enable or not? Open php.ini file and…