安装akeneo后,它不工作
<VirtualHost *:80>
ServerAdmin admin@example.com
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时,它没有运行。
有什么指导吗?有什么帮助吗?
发布于 2019-11-26 16:19:34
检查是否正在加载Akeneo。在下一个文件中使用XDebug创建一个骰子或断点:
/web/app.php在这条车道之前
$response = $kerner->handle($request);如果有效,下一步就是调试下一个函数:
private function handleException位于下一路径中:
/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php如果出现问题,$e变量将提供信息(使用XDebug进行调试)
发布于 2020-09-14 20:13:30
如果您在本地运行,请确保在/etc/hosts文件中具有以下条目。
127.0.0.1 example.com
https://stackoverflow.com/questions/59045079
复制相似问题