Skip to content

Documentation edits #80

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 16, 2012
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added note on assigning correct file permissions
Gives an example for the _www Apache user.
  • Loading branch information
mikeedwards authored and Mike Edwards committed Oct 15, 2012
commit 113aa5ad66eb32264f46c5e902f8279c6f62357d
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ You do not need to configure your `/etc/hosts` file for `local.*` because `jquer

RewriteRule . index.php [L]
```
1. Make sure that you have assigned your WordPress files and directories the correct permissions.
For example, if your WordPress files are in the directory ```wordpress```, and you are running Apache under Mac OS X with the ```_www``` user:
```
sudo chown -R _www wordpress
sudo chmod -R g+w wordpress
```

1. Go to `http://local.jquery.com` and walk through the standard WordPress installation. `web-base-template` includes a special install script that will initialize the entire network.

Expand Down