magento 2中未显示示例数据和管理员

时间:2019-04-25 12:30:54

标签: php magento2

我已经在系统上成功安装了magento。我正在使用PHP版本7.1.28,Magento CLI版本2.1.17和窗口10。我已附上成功屏幕。当我运行前端时,其中没有示例数据。另外,当我运行管理面板时,对我来说看不到任何东西。 我受了很多苦,但没有得到任何解决方案。我是magento版本2的新手。请帮助我解决问题。

enter image description here

enter image description here

3 个答案:

答案 0 :(得分:0)

您可以在下面的链接中查找类似的问题。

https://magento.stackexchange.com/questions/102671/magento-2-sample-data-installed-but-not-showing https://magento.stackexchange.com/questions/163145/magento-2-sample-data-not-showing

基本上,安装后应该运行一些基本命令。您是否尝试过这样做?

php bin / magento设置:升级 php bin / magento设置:静态内容:部署

希望这会有所帮助!

答案 1 :(得分:0)

正如我所注意到的,在Windows操作系统的Magento 2中,我们遇到了一些问题,因为它无法正确获取目录路径。为此,需要应用一些核心修复程序。尝试以下解决方案可能会对您有所帮助。

导航到下面的文件

供应商\ magento \框架\视图\元素\模板\文件\ Validator.php

在函数中,isPathInDirectories添加在行下面

$ realPath = str_replace('\','/',$ realPath);

或参考下面的代码功能

protected function isPathInDirectories($path, $directories)
{
    if (!is_array($directories)) {
        $directories = (array)$directories;
    }
    $realPath = $this->fileDriver->getRealPath($path);
    $realPath = str_replace('\\', '/', $realPath); // extra code added
    foreach ($directories as $directory) {
        if (0 === strpos($realPath, $directory)) {
            return true;
        }
    }
    return false;
}

答案 2 :(得分:0)

这可能是文件权限问题。确保您拥有正确的文件权限