magento 開發記錄

magento
文檔地址:https://doc.magentochina.org/guides/v2.3/config-guide/cli/config-cli.html\
             https://devdocs.magento.com/mftf/docs/merging.html
先註冊賬戶 開通開發者 獲取密鑰 composer git 安裝

問題解決 
ext-intl * is missing
extension=intl
如果提示ext-soap * is missing,也按照上面的方法,添加
extension=soap
後面幾個同理

Magento_Theme  triggerListeners 安裝進度條卡主
1.是的,因爲執行超時問題,請在php.ini 文件中進行以下配置 
在您的php.ini文件中,配置應如下所示:
max_execution_time = 18000
max_input_time = 18000
memory_limit = 1024M

2.如果還有問題
vendor \ magento \ framework \ Image \ Adapter \ Gd2.php文件
在第96行。用以下命令替換功能:
private function validateURLScheme(string $filename) : bool
  {
      $allowed_schemes = ['ftp', 'ftps', 'http', 'https'];
      $url = parse_url($filename);
      if ($url && isset($url['scheme']) && !in_array($url['scheme'], $allowed_schemes) && !file_exists($filename)) {
          return false;
      }
      return true;
  }
重新點擊安裝即可

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章