我刚刚使用eRecruiter配置文件发行版安装了Drupal 7,但是我遇到了大量错误。我知道这不是我的服务器,因为我在服务器上运行了另外10个drupal站点,drupal日志中没有显示任何内容。
这些都是错误:
当我在“求职”中单击时:Fatal error: Call to a member function pre_execute() on a non-object in /var/www/vhosts/xxx/public_html/profiles/recruiter/modules/views/plugins/views_plugin_display.inc on line 2432
当我点击简历搜索时:Fatal error: Call to a member function pre_execute() on a non-object in /var/www/vhosts/xxx/public_html/profiles/recruiter/modules/views/plugins/views_plugin_display.inc on line 2432
当我点击我的简历:Fatal error: Call to undefined function entity_i18n_string() in /var/www/vhosts/xxx/public_html/profiles/recruiter/modules/field_collection/field_collection.module on line 913
我使用了配置文件中包含的精确的drupal和模块版本:http://epiqo.com/recruiter
我有错误..。做了一些网上搜索和一个人推荐更新Drupal和所有的规则。我做了所有的更新,但是错误仍然存在。
我已经安装了Apache,它运行得很好,drupal说它已经找到了。
然后我试着在我的mac上安装它,我也得到了同样的错误。
我的php_error.log
报告如下:
[01-May-2012 17:50:28] PHP Fatal error: Access level to SearchApiViewsHandlerField::$additional_fields must be public (as in class views_handler_field) in /Users/xxx/Sites/vhosts/eRecruiter/profiles/recruiter/modules/search_api/contrib/search_api_views/includes/handler_field.inc on line 195
以及:
当我点击“求职”、“简历搜索”和“我的简历”时,我会收到同样的日志信息。
下面是一个指向在线演示版本的链接:http://drupaljobs.epiqo.com/
我非常需要帮助,因为我花了好几个小时搜索论坛和博客。我没有得到任何帮助:(任何帮助都将不胜感激。
C
发布于 2012-05-08 16:05:01
这里有很多错误,让我们看看能不能做点什么。
Fatal error: Call to a member function pre_execute() on a non-object..
当您试图调用该操作时,结果不会返回查询对象,因此您有此错误,用于示例。
PHP Fatal error: Access level to SearchApiViewsHandlerField
从保护领域向公共领域的转变,解决了这一问题。
Fatal error: Call to undefined function entity_i18n_string() in
2012年2月28日发布的实体7.x-1.x-dev :13 不再包含函数entity_i18n_string()。
https://drupal.stackexchange.com/questions/29925
复制相似问题