在Drupal 8

时间:2017-05-01 14:15:01

标签: drupal-8

我正在尝试在drupal 8中创建新的自定义模块。我得到了以下日志。并且系统现在没有响应。我无法登录drupal 8网站。

日志如下: - [Mon May 01 19:15: 28.999581 2017] [:error] [pid 1892:tid 1660] [client :: 1:60090]未捕获的PHP异常Symfony \ Component \ Routing \ Exception \ RouteNotFoundException:" Route&# 34; first_module.content"不存在。"在D:\ PHP server \ xampp-win32-5.6.30-0-VC11 \ xampp \ htdocs \ drupal_8 \ core \ lib \ Drupal \ Core \ Routing \ RouteProvider.php第187行

2 个答案:

答案 0 :(得分:0)

您为自定义模块创建了哪些文件。 Drupal 8只需要一个文件作为开始。

custom_module.info.yml

name: Custom module name
description: 'Module Description'
type: module
core: 8.x
package: Custom

答案 1 :(得分:0)

你有一条路线" first_module.content"在您的代码中不可用。

确保您的first_module.routing.yml中存在该路由,并且您已清除了缓存。

如果网站没有响应并且您无法清除缓存,请转到您的数据库并截断所有带有前缀'缓存_'的表格。