Skip to content
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

Update README.md #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
Update README.md
  • Loading branch information
kimcheung committed Apr 19, 2019
commit e191cf1e42f6652eeb0779d9491ac5fd7fd3ed28
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

1. Navigate to https://wp.docker/wp-admin/ (ask for login in main channel).

2. Download and clone this plugin (should NOT be run in production environments on high-traffic servers where
2. Git clone this plugin (should NOT be run in production environments on high-traffic servers where
performance matters...) into the onecms-docker plugins dir.

3. Navigate to Vanilla WP Network.
Expand Down Expand Up @@ -44,3 +44,10 @@ define( 'WP_DEV_KIT_AIRPLANE_MODE', true )
```
to pull the ABP powering this plugin for internet-less development.

## FILE PERMISSIONS

You may have 403 issues with these files if you unzip and put it into the plugins directory.
`ls` the directory and see if there's extended attributes on your plugin directory. If so, it will have an `@` sign at the end of its permissions, ie: `drwxr-xr-x@`
To remove the extended attributes: `xattr -rc <directory>`
Apply required permissions: `chmod 755 <file>`