1

私はdrupalに非常に慣れていません。モジュールをインストールしようとしたときに、これらのエラーに直面しています。これに対処する方法を提案できる人はいますか?

strict warning: Non-static method view::load() should not be called statically in      C:\xampp\htdocs\drupal\sites\all\modules\views\views.module on line 879.  
strict warning: Declaration of views_handler_filter::options_validate() should be compatible with views_handler::options_validate($form, &$form_state) in     C:\xampp\htdocs\drupal\sites\all\modules\views\handlers\views_handler_filter.inc on line 589.  
strict warning: Declaration of views_handler_filter::options_submit() should be compatible with views_handler::options_submit($form, &$form_state) in C:\xampp\htdocs\drupal\sites\all\modules\views\handlers\views_handler_filter.inc on line 589.
strict warning: Declaration of views_handler_filter_boolean_operator::value_validate() should be compatible with views_handler_filter::value_validate($form, &$form_state) in C:\xampp\htdocs\drupal\sites\all\modules\views\handlers\views_handler_filter_boolean_operator.inc on line 149.
strict warning: Declaration of views_plugin_row::options_validate() should be compatible with views_plugin::options_validate(&$form, &$form_state) in C:\xampp\htdocs\drupal\sites\all\modules\views\plugins\views_plugin_row.inc on line 135.
strict warning: Declaration of views_plugin_row::options_submit() should be compatible with views_plugin::options_submit(&$form, &$form_state) in C:\xampp\htdocs\drupal\sites\all\modules\views\plugins\views_plugin_row.inc on line 135.
strict warning: Non-static method view::load() should not be called statically in C:\xampp\htdocs\drupal\sites\all\modules\views\views.module on line 879.
4

1 に答える 1

1

問題は、PHP 5.4 で Drupal 6.2 を実行しようとしていることです。Drupal 6 の場合、PHP の推奨バージョンは 5.2 です。それ以上の場合、エラーが発生しないという保証はありませんが、サイトに設定したモジュールに基づいて 5.3 でエラーなしで実行される可能性があります。

https://drupal.org/requirementsを参照

于 2013-10-23T23:38:02.740 に答える