web-dev-qa-db-ja.com

インストール時にAJAXエラーが表示されますDrupal 7:なぜですか?

Drupal 7.10をインストールしようとしましたが、インストールで28/29モジュールを実行すると、エラーが発生しました:

AJAX HTTPエラーが発生しました。
HTTP結果コード:200
デバッグ情報が続きます。
パス: http://localhost/drupal/install.php?profile = standard&locale = en&id = 1&op = do
StatusText:OK
ResponseText:(!)
致命的エラー:行153のC:\ wamp\www\drupal\includes\database\mysql\database.incで最大実行時間が30秒を超えました
コールスタック:

時間メモリ関数の場所
 10.0004371192 {main}()..\install.php:0 
 20.0043834504 install_drupal()..\install.php:26 
 30.95958976424 install_run_tasks()..\install.core.inc:79
41.929419997120 install_run_task()..\install.core.inc:342
51.930720117440 _batch_page()..\install.core.inc :452 
 61.931520124560 _batch_do()..\batch.inc:80
71.931520124560 _batch_process()..\batch.inc:161
81.933320214776 call_user_func_array()..\batch。 inc:284 
 91.933320214800 _install_module_batch()..\batch.inc:284
101.933320215000 module_enable()..\install.core.inc:1538
112.990422114008 module_invoke()..\module.inc:448 
 122.990422114224 call_user_func_array() ..\module.inc:794
132.990422114360 standard_install()..\module.inc:794
1420.519725138960 user_role_grant_permissions()..\standard.install:400 
 1529.936125151208 MergeQuery- > execute()..\user.module:3030 
 1629.938825159880 DatabaseTransaction-> __ destruct()..\user.module:3030 
 1729.938825159880 DatabaseConnection-> popTransaction()..\database.inc :1872 
 1829.938825159912 DatabaseConnection_mysql-> popCommittableTransactions()..\database.inc:1105

誰かが私を助けてくれますか?

2
Leo Lerdorf

問題は、最大実行時間が超過していることです。これを修正するには、php.iniファイルで最大実行時間を変更する必要があります。タスクバーのWampアイコンをクリックし、PHP=-> php.iniを選択し、 "max_execution_time"を見つけて30から100-300程度に変更し、より遅いスクリプトでも確実に取得されるようにします。タイムアウト前に実行されたジョブ。

設定を変更した後は、必ずサーバーを再起動してください。

5
Madis

drupalインストール中に、応答テキスト "Drupal already installed"とともに同様のエラーが発生していました。php.iniを以下のように変更して修正しました、

max_execution_time = 180

max_input_time = 180

max_input_nesting_level = 300

memory_limit = 512M

0
amitgoyal