Moodle Error in Uploading Course Backup Files

Upload a file does not end.

Screenshot from 2020-05-21 16-54-08Manage backup files drag and drop upload results to this:Screenshot from 2020-05-21 17-15-26

Solution: Change this in your etc/php.ini

post_max_size 512M
max_execution_time 600
max_file_uploads 20
max_input_time 600
Adjust the php.ini setting:
– post_max_size and upload_max_filesize to allow up to 64M or higher filesize upload depending on your needs.
In NGINX, /etc/nginx/nginx.conf:
– Add the client_max_body_size 1028M; directive inside the SSL server block.
– After changing the settings, restart the NGINX and PHP-FPM services to reflect the adjustments sudo systemctl restart nginx and sudo systemctl restart php-fpm.

Source: https://moodle.org/mod/forum/discuss.php?d=280517