网站首页 / 资讯 / Magento文档/ Magento2.x文档

M2.X在windows机中安装出现报错Unable to apply data patch Magento\Theme\Setup\Patch\Data\RegisterThemes

作者:yuanyuan

执行常规安装过程中出现这个问题

 Unable to apply data patch Magento\Theme\Setup\Patch\Data\RegisterThemes for module Magento_Theme. Original excepti
  on message: Wrong file

需要修改文件

\vendor\magento\framework\Image\Adapter\Gd2.php



在M2版本2.4.5中,此问题依然存在,但此文件位于

\lib\internal\Magento\Framework\Image\Adapter\Gd2.php

下的大约94行内容从

   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)) {
            return false;
        }

        return true;
    }

    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)) {
        if ($url && isset($url['scheme']) && !in_array($url['scheme'], $allowed_schemes) && !file_exists($filename)) {
            return false;
        }

        return true;
    }

完成此问题修复

标签: Unable to apply data patch Magento\Theme\Setup\Patch\Data\RegisterThemes Original excepti on message: Wrong file magento2无法安装 magento2无法正常安装 magento2安装 magento2安装问题
上一篇:M2奇葩问题:从M2.3升级到M2.4搜索无结果
下一篇:M2网站样式混乱出错的解决方法

相关内容

最近更新
相关产品
综合服务邮箱: magento2#foxmail.com