mirror of
https://github.com/plankanban/planka.git
synced 2025-12-06 09:13:16 +03:00
Trello Import is Not Working with Large Files #19
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Suleman-Elahi on GitHub.
Hi,
I tried to import 1 board from Trello and it spin for a while and then vanish. I have tried it multiple times to no avail. No error and nothing. Although I would agree that I am importing a complex board that gives large JSON file ~107 MB.
In browser console I see:
@Suleman-Elahi commented on GitHub:
I did all that. I was happening due to cloudflare's proxy(free plan has 100MB limit). I turned it off. Perhaps planka can switch to chunked uploads in future.
@meltyshev commented on GitHub:
Hey! It looks like the exact error returned from the server is
413 - Content Too Large, and in the console the issue is that the server responds with this error in plain text instead of JSON - that's why the client fails to parse it (since it expects JSON).My assumption is that you have a proxy server configured with a max body size limit, and once that limit is exceeded - it returns the plain text error. For example, in the PLANKA Docs for Nginx configuration there's a line
client_max_body_size 50M. If that's the case, I'd suggest increasingclient_max_body_sizeto something like128M.