Shopware插件

时间:2019-03-11 09:40:37

标签: plugins shopware

我正在尝试在购物软件中创建一个基本插件,我还从购物软件的参考站点添加了代码。该插件也可在shopware后端中使用。但是,当我尝试在浏览器中发布网址http://localhost/shopware/RoutingDemonstration时,它仅重定向到主页。没有错误,即使我在URL重定向到主页(不在404页上)之后添加任何内容,也不会显示任何内容。

1 个答案:

答案 0 :(得分:0)

如果您想查看PHP错误,还必须将以下PHP代码添加到config.php文件中:

'front' => [
    'throwExceptions' => true,
    'showException' => true
],

'phpsettings' => [
    'display_errors' => 1
],

'template' => [
    'forceCompile' => true
],

'csrfProtection' => [
    'frontend' => true,
    'backend' => true
],

'httpcache' => [
    'debug' => true
]