标签:
一、windows下drupal的安装
参考官网:https://www.drupal.org/node/594744
drush下载:https://github.com/drush-ops/drush/releases/download/6.0.0/Drush-6.0-2013-08-28-Installer-v1.0.21.msi
二、drush的使用
1.安装drupal7 文件夹为drupal75
drush dl drupal-7 --drupal-project-rename="drupal75" -y
2.cd drupal75执行下面的路径
drush site-install standard --account-name=drupal的帐号 --account-pass=drupal的密码 --db-url=mysql://root:数据库密码@localhost/数据库 -y
3.安装模块
drush dl 模块名字 //安装模块 -y 加上y 是肯定 drush en 模块名字 //开启模块 -y drush dis 模块名字 //卸载模块 -y
4自动下载补全missing的插件
drush en [ModuleName] -y
5.更新模块:
$ drush pm-update
6.清空所有缓存,常用
drush cache-clear all
7.devel生成一堆初始化的测试内容
drush en devel_generate -y drush generate-content 100 上面的内容生成了100个测试的nodes
drush help (查看命令帮助)
drush cc (清缓存)
drush cron (运行cron)
标签:
原文地址:http://www.cnblogs.com/suihui/p/4355856.html