From 2f7d2eb516d815f8adf605ed224ad0a2255aa40b Mon Sep 17 00:00:00 2001 From: theDepart3d <109445905+theDepart3d@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:43:27 -0500 Subject: [PATCH] added known permission errors Added methods to resolve any permission denied or forbidden errors --- readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 781a02d..bd46595 100644 --- a/readme.md +++ b/readme.md @@ -194,7 +194,13 @@ You can also **mix the two methods**. ## Known issues -If you are using Nginx, you might be required to do additional setup in order to increase the upload max size. Check the Nginx's documentation for `client_max_body_size`. +1.) If you are using Nginx, you might be required to do additional setup in order to increase the upload max size. Check the Nginx's documentation for `client_max_body_size`. + +2.) Set Folder to apache2/nginx user `chown -R www-data:www-data /path/to/app/dir` + +2.1) Set correct files permission `find /path/to/app/dir -type f -exec chmod 644 {} \;` + +2.2) Set correct folder permission `find /path/to/app/dir -type d -exec chmod 755 {} \;` ## Development