1Open the php.ini file
2
3Locate the following line:
4upload_max_filesize = 100M
5
6Replace 100M with a higher value in megabytes. (256 MB for example)
7This file allows you to configure other settings as well:
8
9memory_limit 256M – Sets the max amount of memory a script can use.
10post_max_size 32M – Sets the max size for the total of the POST body data.
11max_execution_time 600 – Max time, in seconds, that a script is allowed to run.
12max_input_time 900 – Max time, in seconds, that a script is allowed to parse input data.
13
14Save the file and exit.
15
16/*
17I hope it will help you.
18Namaste
19Stay Home Stay Safe
20*/