From e191cf1e42f6652eeb0779d9491ac5fd7fd3ed28 Mon Sep 17 00:00:00 2001 From: kimcheung Date: Fri, 19 Apr 2019 09:51:24 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 067a041..2ac4112 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ` +Apply required permissions: `chmod 755 ` + From dd5c6908ed2ef6bd78afc55b254d75e4e14f84e6 Mon Sep 17 00:00:00 2001 From: kimcheung Date: Fri, 19 Apr 2019 09:53:44 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ac4112..66a5a6a 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,11 @@ 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. +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 ` + Apply required permissions: `chmod 755 `