管理用于广告的 cookie,如广告个性化、再营销和广告效果分析。
2.14.5.8. Install Drush
Drush is a command-line utility for quick access to the Drupal core. It is installed using Composer.
- Connect to the hosting via SSH.
- Set the PHP version for the console that matches the required version of Drush (see Drupal compatibility).
- Install Drush (replace
13.*with the required Drush version, andphp83with the PHP version that corresponds to the required Drush version):mkdir ~/drush && cd ~/drush composer require drush/drush:13.* echo "alias drush='/usr/local/php83/bin/php ~/drush/vendor/bin/drush' " >> ~/.bashrc && source ~/.bash_profile - Check the installed version of Drush:
drush --version
The installed Drush can be run in the console with the command drush.
(1)