Ah I remember this one now, I did load it but there's a 50mb limit on file size, happy to go back to it if I can work out how to change that. Cheers!
Discussion
that might be due to a php file size limit, is 50MB limit in the docs?
I’m not familiar with php, but on my express servers on node I have the same issue and have to configure it for larger file sizes. Probably just one line of code you need to add.
No mention, I’ve asked on GitHub and the Yunohost forum so fingers crossed. I assume there’s a config file somewhere…
I reached out to one of the devs on podcastindex.social I’ll let you know if I hear anything back.
Ahh thanks!
I'm not 100% sure but it looks like the current supported install method is via Docker. I did find these environment variable that you'll want to crank up to 512MB.
CP_MAX_BODY_SIZE ?number (with suffix) 512M
CP_PHP_MEMORY_LIMIT ?number (with suffix) 512M
https://docs.castopod.org/main/fa/getting-started/docker/#environment-variables
Also might want to check your nginx.conf for this value
client_max_body_size 512M;