Magento 2.4.7-p1 结账空白

问题描述 投票:0回答:1

有一个奇怪的问题。

升级到2.4.7-p1,结帐现在是空白的。 /checkout 我已经禁用了所有模块,只保留默认模式,将主题更改为 Magento Blank。它运行 PHP 8.3.9。有没有人以前遇到过这个问题并解决了?

我已经禁用了所有模块,只保留默认模式,将主题更改为 Magento Blank。

也完成了 CSP 部分

magento magento2
1个回答
0
投票

在您的自定义模块中,在 etc 文件夹下创建一个 config.xml 文件,将提供的代码粘贴到该文件中,然后运行以下命令:

php bin/magento 缓存:刷新

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../Store/etc/config.xsd">
    <default>
        <csp>
            <mode>
                <storefront_checkout_index_index>
                    <report_only>1</report_only>
                </storefront_checkout_index_index>
            </mode>
            <policies>
                <storefront_checkout_index_index>
                    <scripts>
                        <inline>1</inline>
                    </scripts>
                </storefront_checkout_index_index>
            </policies>
        </csp>
    </default>
</config>
© www.soinside.com 2019 - 2024. All rights reserved.