Uploading a file through nextcloud’s web interface timeouts after 60s

Possible but I also suspect a php limit.

I’m going to test a download link without being logged in…

I confirm I can reproduce on a newly created instance. Works while authenticated, tiemouts when uploading through a shared link.

1 Like

I also can reproduce the issue now.

Not sure I understand the fix. But looking at the last posts of the GitHub issue I reported above they talk about an enhancement that will appear soon. It was a long lasting bug, 7 years :blush:

The fix is for apache but we use nginx.

These could be the settings for nginx:

client_max_body_size 500m;
client_body_timeout 600;

Tried to edit ngnix.conf into the module :

 # set max upload size (client_max_body_size as already set to 10G)
        client_max_body_size 10G;
        fastcgi_buffers 64 4K;

        #MGT bigger timeout (for unauthenticated uploads)
        client_body_timeout 600;

Not working :grimacing:

If you look at the last posts of the GitHub issue I reported above they talk about an enhancement that will appear soon. It was a long lasting bug, 7 years :blush:

I suggest we wait for the fix.

1 Like

THANKS to @mrmarkus and others for helping nailing this nasty bug. I should have mentioned the quite unusual way I accessed the nextcloud drive (upload box link)

1 Like