Ich kann in einer Neuinstallation von 2.2.4 kein neues Thema anwenden. Ein Upgrade auf 2.2.5 behebt das Problem nicht.
Ich kann in einer Neuinstallation von 2.2.4 kein neues Thema anwenden. Ein Upgrade auf 2.2.5 behebt das Problem nicht.
Antworten:
Hinweis: Dies ist ein bekanntes Problem in Magento 2.2.4 ( siehe GitHub-Problem ). Sie sollten die Magento-Kerndatei nicht direkt ändern (überschreiben oder ein Plugin erstellen)
Ändern Sie in Magento\Email\Model\AbstractTemplate.php
diesem:
public function setForcedArea($templateId)
{
if ($this->area) {
throw new \LogicException(__('Area is already set'));
}
$this->area = $this->emailConfig->getTemplateArea($templateId);
return $this;
}
Dafür:
public function setForcedArea($templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
}
Es sollte das Problem beheben
Update : Kann auch durch Anwenden dieses Patches behoben werden
Behebung eines Fehlers Something went wrong while saving this configuration: Area is already set
beim Speichern der Themenkonfiguration. Sie möchten ein Plugin zum Überschreiben einer Magento\Email\Model\AbstractTemplate.php
Datei in einem benutzerdefinierten Modul erstellen . Und Update- setForcedArea()
Funktion.
Dateipfad: magento / app / code / Vendor / AreaConfigFix / registration.php
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_AreaConfigFix', __DIR__);
Dateipfad: 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>
Dateipfad: 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>
Dateipfad: 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;
}
}
Anstatt den von Magento bereitgestellten Patch zu installieren oder die Kerndateien direkt hier zu ändern, habe ich es so gemacht:
"Dateipfad: magento / app / code / Vendor / ThemeErrorFix / registration.php"
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_ThemeErrorFix', __DIR__);
"Dateipfad: 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>
"Dateipfad: 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>
"Dateipfad: 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;
}
}