xxxxxxxxxx
* Locate your php.ini file. This file is often located in /etc/php/ directory.
* Open php.ini file in a text editor.
- upload_max_filesize = 2M
- post_max_size = 8M
* Change the values of upload_max_filesize and post_max_size to your desired maximum file size. For example:
- upload_max_filesize = 100M
- post_max_size = 100M
* Save the changes and close the file.
* Restart your web server for the changes to take effect.
xxxxxxxxxx
Open php.ini file
//Change the following settings bigger than the file size you are importing
//e.g for a file of 2GB
post_max_size = 2000M
upload_max_filesize = 2000M
memory_limit = 3000M
max_execution_time = 3000