Nie mogę zastosować nowego motywu w czystej instalacji 2.2.4. Aktualizacja do wersji 2.2.5 nie rozwiązuje problemu.
Nie mogę zastosować nowego motywu w czystej instalacji 2.2.4. Aktualizacja do wersji 2.2.5 nie rozwiązuje problemu.
Odpowiedzi:
Uwaga: Jest to znany problem w Magento 2.2.4 ( patrz problem GitHub ), a poniżej poprawka jest tylko poprawką tymczasową. Nie powinieneś bezpośrednio zmieniać pliku rdzenia Magento (przesłonić lub utworzyć wtyczkę)
Zmień Magento\Email\Model\AbstractTemplate.php
to:
public function setForcedArea($templateId)
{
if ($this->area) {
throw new \LogicException(__('Area is already set'));
}
$this->area = $this->emailConfig->getTemplateArea($templateId);
return $this;
}
Dla tego:
public function setForcedArea($templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
}
To powinno rozwiązać problem
Aktualizacja : można również naprawić, stosując tę poprawkę
Naprawiono błąd Something went wrong while saving this configuration: Area is already set
podczas zapisywania konfiguracji motywu. Chcesz utworzyć wtyczkę do Magento\Email\Model\AbstractTemplate.php
pliku zastępowania w niestandardowym module. I setForcedArea()
funkcja aktualizacji .
Ścieżka pliku: magento / app / code / Vendor / AreaConfigFix / register.php
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_AreaConfigFix', __DIR__);
Ścieżka pliku: magento / app / code / Vendor / AreaConfigFix / etc / module.xml
<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_AreaConfigFix" setup_version="1.0.0">
<sequence>
<module name="Magento_Email"/>
</sequence>
</module>
</config>
Ścieżka pliku: magento / app / code / Vendor / AreaConfigFix / etc / di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Email\Model\AbstractTemplate">
<plugin name="email_setforced_area" type="Vendor\AreaConfigFix\Plugin\Email\Model\AbstractTemplate" />
</type>
</config>
Ścieżka pliku: magento / app / code / Vendor / AreaConfigFix / Plugin / Email / Model / AbstractTemplate.php
<?php
namespace Vendor\AreaConfigFix\Plugin\Email\Model;
class AbstractTemplate
{
private $emailConfig;
public function __construct(\Magento\Email\Model\Template\Config $emailConfig)
{
$this->emailConfig = $emailConfig;
}
public function aroundSetForcedArea(\Magento\Email\Model\AbstractTemplate $subject, \Closure $proceed, $templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
}
}
Zamiast instalować łatkę podaną przez magento lub bezpośrednio zmieniać podstawowe pliki, oto jak to zrobiłem:
„Ścieżka pliku: magento / app / code / Vendor / ThemeErrorFix / register.php”
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_ThemeErrorFix', __DIR__);
„Ścieżka pliku: magento / app / code / Vendor / ThemeErrorFix / etc / module.xml”
<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_ThemeErrorFix" setup_version="1.0.0">
<sequence>
<module name="Magento_Email"/>
</sequence>
</module>
</config>
„Ścieżka pliku: magento / app / code / Vendor / ThemeErrorFix / etc / di.xml”
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="Magento\Email\Model\Template">
type="email_setforced_area" type="Vendor\ThemeErrorFix\Model\Template" />
</config>
„Ścieżka pliku: magento / app / code / Vendor / ThemeErrorFix / Model / Template.php”
<?php
namespace Vendor\ThemeErrorFix\Model;
use Magento\Email\Model\Template as coreTemplate;
class Template extends coreTemplate
{
public function setForcedArea($templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
}
}