关于magento2:PluginListGeneratorphp-in-Magento-242-during-compilation

58次阅读

共计 354 个字符,预计需要花费 1 分钟才能阅读完成。

To fix above error, kindly follow the below steps

Open PluginListGenerator.php file located at vendor/magento/framework/Interception.

Go to line no 414 or find the word“scopePriorityScheme”in PluginListGenerator.php file.

Replace the line

"$cacheId = implode('|', $this->scopePriorityScheme) ."|". $this->cacheId;" 
with
"$cacheId = implode('-', $this->scopePriorityScheme) ."-". $this->cacheId;"

正文完
 0