Akeneo未加载

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

安装akeneo后无法正常工作

<VirtualHost *:80>
 ServerAdmin [email protected]
 DocumentRoot /var/www/html/akeneo/pim-community-standard/web
 ServerName example.com
 ServerAlias www.example.com

 <Directory /var/www/html/akeneo/pim-community-standard/web>
      Options FollowSymlinks
      AllowOverride All
      Require all granted
 </Directory>

 ErrorLog ${APACHE_LOG_DIR}/akeneo_error.log
 CustomLog ${APACHE_LOG_DIR}/akeneo_access.log combined

</VirtualHost>

当我尝试在浏览器中打开http://example.com时,它没有运行。

任何指导有帮助吗?

ubuntu browser localhost akeneo
1个回答
0
投票

检查是否正在加载Akeneo。在下一个文件中使用XDebug创建模具或断点:

/web/app.php

在此车道之前

$response = $kerner->handle($request);

如果可行,下一步是调试下一个功能:

private function handleException

位于下一条路径:

/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php

如果出现问题,$ e变量将为您提供信息(已使用XDebug调试)

Check the image

© www.soinside.com 2019 - 2024. All rights reserved.