Downloading certain Apps not working

Any news?
:smile_cat:


Await a fix to heal the apparent core issue

see below:


Presumably outdated by the apparent fix:

There may be a solution available to overcome interrupted downloads like:

However, you should always prefer the most current PHP 7.3 official package for NC 15 & NC 16 & NC 17 installs instead of PHP 7.2 if feasible. Please be also aware of the correct paths to two different php.ini files. Always heed the PHP syntax in each of the php.ini config files, I presume.

This example is suitable for the Apache 2.x web server only.

Please consult the NC 16 Admin Docs » Nextcloud configuration for the admin tasks in general.

Point the plain text editor of your convenience at both /etc/php/7.3/apache2/php.ini and /etc/php/7.3/cli/php.ini to change the following:

  • setting the parametermax_execution_time to 3600 i.e. one hour

; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
; default: max_execution_time = 30
max_execution_time = 3600

  • setting the parameter max_input_time to 3600 i.e. one hour

; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
; long running scripts.
; Note: This directive is hardcoded to -1 for the CLI SAPI
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; http://php.net/max-input-time
; default: max_input_time = 60
max_input_time = 3600

However, please consider to use more conservative values (i.e. lower numbers) for avoiding unexpectedly long running scripts which could result in unwanted load to your server performance.

Hope this helps.
:smile: