首页 > 解决方案 > Magento 错误类 ../validator 不存在

问题描述

我刚刚安装了 Magento2 平台。管理页面是空白的,显示没有任何内容的灰屏。我启用了显示错误,然后显示此错误,但我没有找到任何解决方案或原因:

处理您的请求时出错

Magento\Framework\View\Element\Template\File\Validator 类不存在

标签: phpmagentoe-commercemagento2

解决方案


检查以下路径。如果您的 magento 管理页面为空白,请检查路径: magento_root_dir\vendor\magento\framework\View\Element\Template\File\Validator.php

并更改以下行:

if (0 === strpos($realPath, $directory)) {
    return true;
}

至:

if (0 === strpos($path, $directory)) {
     return true;
}

如果仍然无法找到该文件夹​​,请检查以下路径: magento_root_dir\lib\internal\Magento\Framework\View\Element\Template\File\Validator.php


推荐阅读