From 43ebf0fcf8b2828102b86556bd9ff3d236635e60 Mon Sep 17 00:00:00 2001 From: burumumishsa Date: Sun, 14 Jun 2026 02:18:20 +0200 Subject: [PATCH 1/2] Update troubleshooting.mdx Added Plugin uninstall failure --- docs/troubleshooting.mdx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/troubleshooting.mdx b/docs/troubleshooting.mdx index be1bf9b2..1d16d4d0 100644 --- a/docs/troubleshooting.mdx +++ b/docs/troubleshooting.mdx @@ -143,3 +143,17 @@ Make sure your `Trusted Proxies` are set to the correct ips, both in the panel s Also make sure your webserver and/ or proxy have a high enough upload limit. (e.g. `client_max_body_size`, `upload_max_filesize` and `post_max_size`) In some cases the issue can also be caused by incorrect file permissions. See [above](#wrong-file-permissions) on how to fix your file permissions. + +## Plugin uninstalling issues +If you can't uninstall a plugin via the admin panel, you may have to do it via ssh. +Navigate to the root application directory: `/var/www/pelican/` and run this command: +```sh +php artisan p:plugin:uninstall +``` +It will ask for which plugin you want to remove and if you want to delete its data. +Uninstalling may take a few seconds + +After all this, try visiting the plugins page on the admin dashboard. If you see any 500 error, setup permissions back running this command on the root directory (`/var/www/pelican/`): +```sh +sudo chown -R www-data:www-data /var/www/pelican +``` From e6c462aa5f7d4e3fa729319d4ba1b9f517d11523 Mon Sep 17 00:00:00 2001 From: burumumishsa Date: Sun, 14 Jun 2026 02:32:03 +0200 Subject: [PATCH 2/2] Update troubleshooting.mdx Changed to all systems permission cmd --- docs/troubleshooting.mdx | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/troubleshooting.mdx b/docs/troubleshooting.mdx index 1d16d4d0..36358a04 100644 --- a/docs/troubleshooting.mdx +++ b/docs/troubleshooting.mdx @@ -154,6 +154,20 @@ It will ask for which plugin you want to remove and if you want to delete its da Uninstalling may take a few seconds After all this, try visiting the plugins page on the admin dashboard. If you see any 500 error, setup permissions back running this command on the root directory (`/var/www/pelican/`): -```sh -sudo chown -R www-data:www-data /var/www/pelican -``` + + + ```sh + sudo chown -R www-data:www-data /var/www/pelican + ``` + + + ```sh + sudo chown -R nginx:nginx /var/www/pelican + ``` + + + ```sh + sudo chown -R apache:apache /var/www/pelican + ``` + +