2015-09-03 44 views
2

當我嘗試在命令行中運行Drush,我得到以下錯誤:Drupal的Drush:Drush命令異常終止由於不可恢復的錯誤

Drush command terminated abnormally due to an unrecoverable error

我不知道爲什麼發生這種情況和我無法弄清楚它有什麼問題。當我運行drush -d -v status我得到以下的輸出:

$ drush -d -v status 

Bootstrap to phase 0. [0.04 sec, 1.87 MB][bootstrap] 
Drush bootstrap phase : _drush_bootstrap_drush() [0.04 sec, 1.98 MB] [bootstrap] 

Cache HIT cid: 6.2.0-commandfiles-0-db3247e83fac7ae8173ddf4f9e97733a [0.05 sec, 2[MB][debug] 

Bootstrap to phase 0. [0.15 sec, 5.25 MB][bootstrap] 
Drush bootstrap phase : _drush_bootstrap_drupal_root() [0.19 sec, 5.25 MB] [bootstrap] 

Initialized Drupal 7.35 root directory at /home/cms/production/website [0.21 sec, 6.14 MB][notice] 

Drush bootstrap phase : _drush_bootstrap_drupal_site() [0.21 sec, 6.15 MB][bootstrap] 

Initialized Drupal site default at sites/default [0.21 sec, 6.15 MB][notice] 

Cache MISS cid: 6.2.0-install_profile-66ecfeb9791a023150773849f1550c5d [0.22 sec, 6.15 MB][debug] 

Cache HIT cid: 6.2.0-commandfiles-2-90b5571ff64221f80c3320ec33b2ed28 [0.22 sec, 6.15 MB][debug] 

Drush bootstrap phase : _drush_bootstrap_drupal_configuration() [0.22 sec, 6.44 MB][bootstrap] 

Drush command terminated abnormally due to an unrecoverable error. [0.25 sec, 7.61 MB][error] 

,如果任何人遇到了這個問題,並找到了解決辦法想知道。

回答

0

這種情況很可能發生在啓用的某個模塊上。不幸的是,調試輸出沒有提供關於它是哪個模塊的更多信息。

如果這是在開發環境中,我建議您開始禁用貢獻模塊一個接一個,直到此錯誤消失。我會從任何特別期待瀏覽器使用的模塊開始,可能是像'移動工具'這樣的模塊或可能重定向用戶的貢獻模塊。

0
  1. 檢查Drupal內部看門狗頁面的錯誤。如果網站產生錯誤,drush命令將失敗。
  2. 如果您的站點使用特殊配置(不在sites/default下),您應該爲每個drush命令添加'-l domain.name'。
+1

這是一個有趣的比喻。我不認爲這很重要,但這可能是一個問題。我們正在使用域訪問在共享相同drupal核心的多站點系統中運行一些站點。我會給這個嘗試,併發回... –

+0

我面臨同樣的問題,可以張貼您的解決方案請回。謝謝 – kn3l

1

也許這是舊的這個消息,但我發現這篇文章非常有用,也爲我工作。

首先檢查您的網站是否有自定義模塊中的drupal_goto,這些調用應檢查drupal是否在cli模式,如果不是,則可以製作「drupal_goto」指示。

全部列表:

  • 查找調用drupal_goto。在執行drupal_goto之前,應將這些調用包裝在調用drupal_is_cli中。
  • 尋找對'退出'的調用在代碼路徑
  • 確保drush別名中的uri與在瀏覽器中訪問的uri完全相同。
  • 做一個全新的Drupal安裝,看看問題是否再次發生。如果不是,這些網站之間有什麼不同?
  • 可能導致此問題的一些模塊包括require_login,secure_site,mobile_tools,RESTRICT_IP

原帖在這裏:https://www.drupal.org/node/1140842

相關問題