2.2.4 temiz yüklemesinde yeni bir tema uygulayamıyorum. 2.2.5'e yükseltmek sorunu çözmez.
2.2.4 temiz yüklemesinde yeni bir tema uygulayamıyorum. 2.2.5'e yükseltmek sorunu çözmez.
Yanıtlar:
Not: Bu, Magento 2.2.4'teki bilinen bir sorundur ( GitHub konusuna bakın ) ve düzeltmenin altındaki geçici bir düzeltmedir. Magento çekirdek dosyasını doğrudan değiştirmemelisiniz (geçersiz kılmayın veya bir eklenti oluşturun)
Magento\Email\Model\AbstractTemplate.php
Bu değişiklik :
public function setForcedArea($templateId)
{
if ($this->area) {
throw new \LogicException(__('Area is already set'));
}
$this->area = $this->emailConfig->getTemplateArea($templateId);
return $this;
}
Bunun için:
public function setForcedArea($templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
}
Bu sorunu çözmeli
Güncelleme : bu yamayı uygulayarak da düzeltilebilir
Something went wrong while saving this configuration: Area is already set
Tema yapılandırması kaydedilirken sabit hata oluştu. Magento\Email\Model\AbstractTemplate.php
Özel modülde geçersiz kılma dosyası için eklenti oluşturmak istiyorsunuz . Ve güncelleme setForcedArea()
fonksiyonu.
Dosya yolu: magento / uygulama / kod / Satıcı / AlanConfigFix / registration.php
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_AreaConfigFix', __DIR__);
Dosya yolu: magento / uygulama / kod / Satıcı / 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>
Dosya yolu: magento / uygulama / kod / Satıcı / AlanConfigFix / 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>
Dosya yolu: magento / uygulama / kod / Satıcı / AreaConfigFix / Eklenti / E-posta / 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;
}
}
Magento tarafından verilen yamayı yüklemek ya da doğrudan buradaki ana dosyaları değiştirmek yerine, nasıl yaptım:
"Dosya yolu: magento / uygulama / kod / Satıcı / ThemeErrorFix / registration.php"
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Vendor_ThemeErrorFix', __DIR__);
"Dosya yolu: magento / uygulama / kod / Satıcı / 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>
"Dosya yolu: magento / uygulama / kod / Satıcı / 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>
"Dosya yolu: magento / uygulama / kod / Satıcı / 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;
}
}