Drupal 7.50:Class 更新 drupal 后未发现错误
Drupal 7.50 : Class not found error after updating drupal
所以我最近将我的 Drupal 网站从 7.1x 更新到 7.50 (PHP 5.6),现在我的自定义模块之一无法正常工作,我收到此错误:
Fatal error: Class 'RESTServerViewBuiltIn' not found in C:\Path\moduleName.views.inc on line 11.
我只在一个页面上收到此错误,该网站在其他页面上运行正常
错误在这一行:
class RESTServerViewBuiltInCustom extends RESTServerViewBuiltIn {
classRESTServerViewBuiltInCustom
来自REST server
模块(所以是一个外部模块),并且启用了这个模块。
更新网站 (Admin > Update
) 没有解决问题。
同样清除注册表也没有解决(我也检查了 registry
table 中的路径,所有路径都是正确的)。
有人可以帮我解决这个问题吗?导致此错误的原因可能是什么?
我解决了问题,registry
table 中的 class RESTServerViewBuiltIn
丢失了。
我在 registry
table 中插入了 RESTServerViewBuiltIn
行,现在可以使用了。
所以我最近将我的 Drupal 网站从 7.1x 更新到 7.50 (PHP 5.6),现在我的自定义模块之一无法正常工作,我收到此错误:
Fatal error: Class 'RESTServerViewBuiltIn' not found in C:\Path\moduleName.views.inc on line 11.
我只在一个页面上收到此错误,该网站在其他页面上运行正常
错误在这一行:
class RESTServerViewBuiltInCustom extends RESTServerViewBuiltIn {
classRESTServerViewBuiltInCustom
来自REST server
模块(所以是一个外部模块),并且启用了这个模块。
更新网站 (Admin > Update
) 没有解决问题。
同样清除注册表也没有解决(我也检查了 registry
table 中的路径,所有路径都是正确的)。
有人可以帮我解决这个问题吗?导致此错误的原因可能是什么?
我解决了问题,registry
table 中的 class RESTServerViewBuiltIn
丢失了。
我在 registry
table 中插入了 RESTServerViewBuiltIn
行,现在可以使用了。