File upload fails if larger than 100MB #420

Closed
opened 2026-02-04 17:57:31 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @Kalkoen31 on GitHub (Sep 5, 2025).

Current Behavior

I am trying to upload a file and I get this error: The mountedActionsData.0.files.980093dc-506a-49db-99a1-df0b0cc9eced failed to upload.

Image

When I open the files tab in the panel I get these 2 errors in the console. Don't know if they are related.
Image

Image

This is the console error I get when uploading the file.
Image

I am using Ubuntu 24.04.3 LTS, no reverse proxy, no cf tunnels.

Panel, wings and OS are up to date.

changes made in an attempt to fix the issue:
In the panel max upload size is set to 1024MiB.
In /etc/nginx/sites-enabled/pelican.conf client_max_body_size is set to 1024m;
In php.ini upload_max_filesize is set to 1024M and post_max_size to 2048M and memory_limit to -1
Restarted the VM multiple times.

Expected Behavior

Upload succeeds

Steps to Reproduce

Upload a file larger than 100MiB.

Panel Version

1.0.0-beta25

Wings Version

1.0.0-beta17

Games and/or Eggs Affected

No response

Docker Image

No response

Error Logs

Wings logs: https://logs.pelican.dev/53d099c3
Panel logs: `tail: cannot open '/var/www/pelican/storage/logs/laravel-2025-09-05.log' for reading: No such file or directory`

Is there an existing issue for this?

  • I have searched the existing issues before opening this issue.
  • I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server.
  • I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
Originally created by @Kalkoen31 on GitHub (Sep 5, 2025). ### Current Behavior I am trying to upload a file and I get this error: `The mountedActionsData.0.files.980093dc-506a-49db-99a1-df0b0cc9eced failed to upload.` <img width="673" height="313" alt="Image" src="https://github.com/user-attachments/assets/9607a7cd-4f8e-4069-903c-fa09d18b39e5" /> When I open the files tab in the panel I get these 2 errors in the console. Don't know if they are related. <img width="1719" height="230" alt="Image" src="https://github.com/user-attachments/assets/a9270dcd-12a7-4891-bac8-8e381e4bb8c5" /> <img width="1719" height="482" alt="Image" src="https://github.com/user-attachments/assets/2d1fcc4c-b686-496a-9095-94e63af80e15" /> This is the console error I get when uploading the file. <img width="1718" height="543" alt="Image" src="https://github.com/user-attachments/assets/69f8fd8c-180e-466b-9902-095954742b11" /> I am using Ubuntu 24.04.3 LTS, no reverse proxy, no cf tunnels. Panel, wings and OS are up to date. changes made in an attempt to fix the issue: In the panel max upload size is set to 1024MiB. In `/etc/nginx/sites-enabled/pelican.conf` `client_max_body_size` is set to `1024m;` In php.ini `upload_max_filesize` is set to 1024M and `post_max_size` to 2048M and `memory_limit` to -1 Restarted the VM multiple times. ### Expected Behavior Upload succeeds ### Steps to Reproduce Upload a file larger than 100MiB. ### Panel Version 1.0.0-beta25 ### Wings Version 1.0.0-beta17 ### Games and/or Eggs Affected _No response_ ### Docker Image _No response_ ### Error Logs ```bash Wings logs: https://logs.pelican.dev/53d099c3 Panel logs: `tail: cannot open '/var/www/pelican/storage/logs/laravel-2025-09-05.log' for reading: No such file or directory` ``` ### Is there an existing issue for this? - [x] I have searched the existing issues before opening this issue. - [x] I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server. - [x] I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
Author
Owner

@Kalkoen31 commented on GitHub (Sep 5, 2025):

Solved.
change the following 3 values in /etc/nginx/sites-enabled/pelican.conf:
client_max_body_size 100m;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";

@Kalkoen31 commented on GitHub (Sep 5, 2025): Solved. change the following 3 values in `/etc/nginx/sites-enabled/pelican.conf`: client_max_body_size 100m; fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
Author
Owner

@rmartinoscar commented on GitHub (Sep 5, 2025):

Just to clarify we don't recommend editing those values but if you want bigger then 100MB file upload then yes you need to edit them.

You may also need client_body_timeout 120s

@rmartinoscar commented on GitHub (Sep 5, 2025): Just to clarify we don't recommend editing those values but if you want bigger then 100MB file upload then yes you need to edit them. You may also need `client_body_timeout 120s`
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel#420