Last active
January 4, 2016 06:49
-
-
Save axoplasm/8584304 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* [Install MySQL] | |
* [ensure PHP is loaded] | |
* [add local hostname in /private/etc/hosts] | |
* [add local vhost /private/etc/apache2/conf/httpd-vhosts.conf] | |
* Download latest alpha from https://drupal.org/node/3060/release | |
* create sites/default/files | |
$ mkdir sites/default/files | |
* copy settings.php | |
$ cp sites/default/default.settings.php sites/default/settings.php | |
* clear perms for sites/default | |
$ chmod -R 777 sites/default | |
* create database: | |
mysql> create database foo; | |
* create MySQL user: | |
mysql> create user 'foo'@'localhost' identified by 'pA55w0rd'; | |
mysql> grant all privileges on foo.* to 'foo'@'localhost' identified by 'pA55w0rd' with grant option; flush privileges | |
* load foo.local/install.php | |
* on __"Set up Database"__ select __Advanced Options__ and change __Host__ from *localhost* to *127.0.0.1* | |
* Remove write permissions on /sites/default/* | |
$ chmod -R 755 sites/default/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment