Magento 2.2.2:792723456バイトの許容メモリサイズを使い果たしました(184320バイトを割り当てようとしました)


11

magento 2.2.2で作業していますが、製品を保存すると、このエラーが表示されます。

致命的なエラー:/var/www/html/Demo/vendor/magento/framework/Profiler.phpの153行目で、792723456バイトの許容メモリサイズを使い果たしました(184320バイトを割り当てようとしました)。

Php version : 7.0

Magento : 2.2.2

また、変更memory_limit = 16Gphp.iniファイルに適用され、Apacheサーバーを再起動します。それでも、この問題は修正されていません。

<?php
namespace Abc\Xyz\Observer;

use Magento\Framework\Event\ObserverInterface;
use \Magento\Store\Model\StoreManagerInterface;

class ProductSaveAfter implements ObserverInterface
{
    protected $_objectManager;
    protected $messageManager;
    protected $_productmFactory;
    protected $_productdFactory;
    protected $_productsFactory;
    protected $_eavConfig;
    protected $sStore;
    protected $scopeConfig;
    protected $_helper;
    protected $storeManager;

    public function __construct(
        \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
        \Magento\Framework\ObjectManagerInterface $objectManager,
        \Magento\Framework\App\RequestInterface $request,
        \Magento\Eav\Model\Config $eavConfig,
        \Abc\Xyz\Helper\Data $helper,
        StoreManagerInterface $storeManager,
        \Abc\Xyz\Model\productmFactory $productmFactory,
        \Abc\Xyz\Model\ProductdFactory $ProductdFactory,
        \Abc\Xyz\Model\productsFactory $productsFactory,
        \Abc\Xyz\Model\sStoreFactory $sStoreFactory,
        \Magento\Framework\Message\ManagerInterface $messageManager
    ) {
        $this->_objectManager = $objectManager;
        $this->_request = $request;
        $this->_helper = $helper;
        $this->scopeConfig = $scopeConfig;
        $this->_eavConfig = $eavConfig;
        $this->_productmFactory = $productmFactory;
        $this->_productdFactory = $ProductdFactory;
        $this->_productsFactory = $productsFactory;
        $this->sStore = $sStoreFactory;
        $this->storeManager = $storeManager;
        $this->messageManager = $messageManager;
    }
    public function execute(\Magento\Framework\Event\Observer $observer)
    {
        $product = $observer->getEvent()->getProduct();
        $id = $product->getId();
        $data = $this->_request->getParams();
        $currentWebsite = $this->storeManager->getStore()->getWebsiteId();
        try
        {
            if ($id) {
                $YG14 = $this->_request->getParam('YG14');
                $YG14_size = $this->_request->getParam('YG14_size');

                $mI = $this->_productmFactory->create()->getCollection();
                $mI->addFieldToFilter('product_id', $id);
                /** Delete all records*/
                if ($YG14 != "") {
                    if (!empty($mI)) {
                        foreach ($mI as $mtl) {
                            $mI = $this->_productmFactory->create()->load($mtl->getId());
                            $mI->delete();
                        }
                    }
                }

                if ($YG14 != "") {
                    $mISave = $this->_productmFactory->create();
                    $mISave->setProductId($id);
                    $mISave->setMtlWeight($YG14);
                    $mISave->setMtlType('YG14');
                    $mISave->setSizeIncrementWeightDiff($YG14_size);
                    $mISave->save();
                }
                $dD = $this->_request->getParam('d');
                if ($dD) {
                    $dInfoDelete = $this->_productdFactory->create()->getCollection()->addFieldToFilter('product_id', $id);
                    foreach ($dInfoDelete as $key => $dia) {
                        $dInfo = $this->_productdFactory->create()->load($dia->getId());
                        $dInfo->delete();
                    }
                    foreach ($dD as $d) {
                        $dS = $this->_productdFactory->create();
                        $dS->setProductId($id);
                        if (array_key_exists('d_s', $d)) {
                            $dS->setDS($d['d_s']);
                        }
                        if (array_key_exists('d_w', $d)) {
                            $dS->setDW($d['d_w']);
                        }
                        if (array_key_exists('d_q', $d)) {
                            $dS->setDQ($d['d_q']);
                        }
                        if (array_key_exists('d_s_t', $d)) {
                            $dS->setDST($d['d_s_t']);
                        }
                        $dS->save();
                    }
                } else {
                    $deld = $this->_request->getParam('deld');
                    if ($deld != "") {
                        $delD = explode(",", $deld);
                        foreach ($delD as $delDIds) {
                            $dD = $this->_productdFactory->create()->load($delDIds);
                            $dD->delete();
                        }
                    }
                }
                $sD = $this->_request->getParam('st');
                if ($sD) {
                    foreach ($sD as $sts) {
                        $ssSave = $this->_productsFactory->create();
                        if (isset($sts['st_ids'])) {
                            $ssSave->setId($sts['st_ids']);
                        }
                        $ssSave->setProductId($id);
                        if (array_key_exists('st_c', $sts)) {
                            $ssSave->setStC($sts['st_c']);
                        }
                        if (array_key_exists('st_sett', $sts)) {
                            $ssSave->setStSett($sts['st_sett']);
                        }
                        if (array_key_exists('st_s', $sts)) {
                            $ssSave->setStS($sts['st_s']);
                        }
                        if (array_key_exists('st_w', $sts)) {
                            $ssSave->setStW($sts['st_w']);
                        }
                        if (array_key_exists('st_q', $sts)) {
                            $ssSave->setStQ($sts['st_q']);
                        }
                        $ssSave->save();
                        $sStore = $this->sStore->create();
                        $sStoreExists = $sStore->getCollection()->addFieldToFilter('st_id', $ssSave->getId())->addFieldToFilter('website_id', $currentWebsite);
                        if (!empty($sStoreExists->getData())) {
                            foreach ($sStoreExists as $value) {
                                $sStore->load($value->getId());
                                $sStore->setId($value->getId());
                                $sStore->setProductId($id);
                                $sStore->setPrice($sts['price']);
                                $sStore->save();
                            }
                        } else {
                            $sStore->setWebsiteId($currentWebsite);
                            $sStore->setProductId($id);
                            $sStore->setStId($ssSave->getId());
                            if (array_key_exists('price', $sts)) {
                                $sStore->setPrice($sts['price']);
                            }
                            $sStore->save();
                        }
                    }
                    $delSt = $this->_request->getParam('delSt');
                    if ($delSt != "") {
                        $delS = explode(",", $delSt);
                        foreach ($delS as $delSIds) {
                            $dDelete = $this->_productsFactory->create()->load($delSIds);
                            $dDelete->delete();
                        }
                    }
                } else {
                    $delSt = $this->_request->getParam('delSt');
                    if ($delSt != "") {
                        $delS = explode(",", $delSt);
                        foreach ($delS as $delSIds) {
                            $dDelete = $this->_productsFactory->create()->load($delSIds);
                            $dDelete->delete();
                        }
                    }
                }

                $prices = $this->_helper->defaultPriceCalculate($id, $product, $currentWebsite);
                $product->setWebsiteId($currentWebsite)->setPrice($prices['finalPrice']);
                if ($prices['discountedPrice'] != 0) {
                    $product->setSpecialPrice($prices['discountedPrice']);
                }
                $product->save();

            }
        } catch (\Magento\Framework\Exception\LocalizedException $e) {
            $this->messageManager->addError($e->getMessage());
        } catch (\RuntimeException $e) {
            $this->messageManager->addError($e->getMessage());
        } catch (\Exception $e) {
            $this->messageManager->addException($e, __('Something went wrong while saving the post.'));
        }
    }
}

それを解決するには?

私を助けてください。


製品の保存に使用するコードを表示します。
Suresh Chikani

メモリサイズを-1に設定できるため、必要なメモリサイズを使用します。設定はini_set( 'memory_limit'、-1);です。
Himmat Paliwal

チェックしてください@SureshChikani
Rohan Hapani

メモリサイズ-1をどこに配置しましたか?
Rohan Hapani

magentoのルートにあるindex.phpファイルに配置できます。
Himmat Paliwal

回答:


32

以下のコマンドを試してください:

php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
php bin/magento setup:di:compile
php bin/magento cache:flush
php bin/magento cache:clean

//To run command forcefully
php -f bin/magento

//To run command with memory limit 4G
php -d memory_limit=4G bin/magento

//To run command with max memory limit
php -d memory_limit=-1 bin/magento

それでも問題が解決しない場合は、次の設定を試してください。

  1. [Magento2-root-folder] /index.php
ini_set('memory_limit',256);

OR

ini_set('memory_limit','-1');

CLIを使用して現在のmemory_limit値を確認します。

1. php -r "echo ini_get('memory_limit').PHP_EOL;"

2. php -i | grep memory

それでも問題が解決しない場合は、次の場所でメモリ制限を増やします(たとえば、最大2048M)。

  1. [Magento2-root-folder] /。user.ini
memory_limit = 768M
  1. [Magento2-root-folder] /。htaccess(2か所)
php_value memory_limit 768M
  1. [Magento2-root-folder] /pub/.user.ini
memory_limit = 768M
  1. [Magento2-root-folder] /pub/.htaccess(2か所)
php_value memory_limit 768M

これで問題は解決するはずです。それでも問題が解決しない場合は、カスタムモジュールを無効にして、もう一度確認してください。


1
素晴らしい。ありがとうございました。.user.iniを編集してください。
James M

@JamesM-喜んでお手伝いします。助けてください:)
Pratik Oza 2018

私にとって非常に役に立ちました。これを追加して問題を解決しました
Pradip Garchar

説明は素晴らしいです。このアプローチを
Jai

@PratikOza同様のエラーに直面しているので、提案を使用してこれらのコマンドも実行する必要がありますか?動作しているかどうかをテストするにはphp bin / magento setup:static-content:deploy -f、php bin / magento cache:flush
Ahmer Saeed

7

簡単な解決策は

php -dmemory_limit=6G bin/magento setup:static-content:deploy

これを試してください、それは私のために働きました。


3

792723456バイトは756 MBを意味します。これはMagentoが提案する値であり、サンプル構成(特にnginx)のデフォルトです。

@Pratik Ozaの提案をすべて試し、別の場所を指摘させてください。php-fpmまたは同様のCGIを使用していますか?その場合は、メモリの制限も確認してください。

私の場合、私はnginx + php-fpmを使用していて、プロジェクトごとにmemory_limitを設定します

php_value [memory_limit] = [N] MB

また、CGIを使用している場合は、これを試してください。まずウェブサーバーを停止してからCGIを再起動してから、ウェブサーバーを再起動します。

これは私が一度直面したランダムな問題であり、上記を実行する必要がありました。nginxが設定していない場合は、php.iniまたはfpm.confに設定された値を気にせずにnginxがphp-fpmに渡されたものに独自の値を設定していたようです

編集:問題は.user.iniを編集することで解決しました。つまり、別の値を渡したのは実際にはnginxであり、私が説明したケースにも当てはまる可能性があります。これを指摘するだけです。また、他の回答を読んでいる人には、決してこれを使用しないでくださいset_init('memory_limit',-1)

私の開発者がこれを使用してmysqlクエリの最適化をテストしているのを見てきました。スクリプトは35ギグのramに達し、10分後に殺すまで増加し続けました。実行ポイントに到達するまで値をまともなしきい値に設定し、そのままにしておくか、値またはパースペクティブのuser.ini / fpm.conf / fascgiパラメーターを修正します。


1
php bin/magento setup:upgrade

php bin/magento setup:static-content:deploy -f

php bin/magento cache:flush

php bin/magento cache:clean

それは間違いなく仕事です。


0

これは、magento 2.3のcomposerの代わりにアーカイブからインストールするときに私をつまずかせました。私の場合、変更していた設定が間違った場所にありました。

更新していました:

vi /etc/php/7.2/cli/php.ini

更新する必要があります:

vi /etc/php/7.2/apache2/php.ini

これは次のような両方のエラーの場合です。

PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted

そして

PHP Fatal error:  Maximum execution time of 30 seconds exceeded in....

またa2enmod rewrite、ページに問題がある場合は、必ず書き換えを有効にしてください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.