web-dev-qa-db-ja.com

DrushでDrupalサブテーマを作成しようとしたときに問題を解決するにはどうすればよいですか?

「drush fst Foundation-subtheme」コマンドを実行しようとすると、次のエラーが表示されます。

sh-3.2# drush fst foundation-subtheme
The drush command 'fst foundation-subtheme' could not be found.  Run `drush cache-clear drush`  [error]
to clear the commandfile cache if you have installed new extensions.
Drush was not able to start (bootstrap) the Drupal database.                                    [error]
Hint: This may occur when Drush is trying to:
 * bootstrap a site that has not been installed or does not have a configured database. In this
case you can select another site with a working database setup by specifying the URI to use with
the --uri parameter on the command line. See `drush topic docs-aliases` for details.
 * connect the database through a socket. The socket file may be wrong or the php-cli may have
no access to it in a jailed Shell. See http://drupal.org/node/1428638 for details.

Drushは次のものに接続しようとしました:

Drupalバージョン:7.32
サイトURI: http:// default

データベースドライバー:mysql
データベースホスト名:localhost
データベースポート:3306
データベースのユーザー名:root
データベース名:drupal
PHP実行可能ファイル:/ usr/bin/php
PHP構成:
PHP OS:ダーウィン
Drushスクリプト:/Users/Marianna/.composer/vendor/drush/drush/drush.php Drushバージョン:8.1.3 Drush一時ディレクトリ:/ tmp
ドラッシュ構成:
Drushエイリアスファイル:
Drupal root:/ Users/Marianna/Documents/Sites/Link-New
Drupal設定ファイル:sites/default/settings.php
サイトパス:sites/default

DrushでFoundationをインストールしようとすると、次のエラーが表示されます。

sh-3.2# drush --uri=http://linkengineering en zurb_foundation
Command pm-enable needs a higher bootstrap level to run - you will need to invoke drush from a  [error]
more functional Drupal environment to run this command.
The drush command 'en zurb_foundation' could not be executed.                                   [error]
Drush was not able to start (bootstrap) the Drupal database.                                    [error]
Hint: This may occur when Drush is trying to:
 * bootstrap a site that has not been installed or does not have a configured database. In this
case you can select another site with a working database setup by specifying the URI to use with
the --uri parameter on the command line. See `drush topic docs-aliases` for details.
 * connect the database through a socket. The socket file may be wrong or the php-cli may have
no access to it in a jailed Shell. See http://drupal.org/node/1428638 for details.

Drushは次のものに接続しようとしました:

Drupalバージョン:7.32
サイトURI: http:// linkengineering
データベースドライバー:mysql
データベースのホスト名:localhost
データベースポート:3306
データベースのユーザー名:root
データベース名:drupal
PHP実行可能ファイル:/ usr/bin/php
PHP構成:
PHP OS:ダーウィン
Drushスクリプト:/Users/Marianna/.composer/vendor/drush/drush/drush.php Drushバージョン:8.1.3 Drush一時ディレクトリ:/ tmp
ドラッシュ構成:
Drushエイリアスファイル:
Drupal root:/ Users/Marianna/Documents/Sites/Link-New
Drupal設定ファイル:sites/default/settings.php
サイトパス:sites/default

1
MG1

問題は主に環境/ phpにあり、これはMAMPの問題です(MAMP-phpとServer-phpのパスの不一致)。この記事の link に従ってください。

解決策:シンボリックリンク

簡単にするために、ターミナルセッションでMAMPと同じPHP実行可能ファイルを使用するようにします。したがって、これを実行します。

$ mv /usr/bin/php /usr/bin/php.bak 
$ ln -s /Applications/MAMP/bin/php/php5.5.3/bin/php /usr/bin/php

ただし、フォルダーごとにパスを確認する必要があります。

2
CodeNext