Increase Import limit in PHPMyAdmin

Invictiousking

New member
Joined
May 31, 2022
Messages
3
Hello Everyone
I cannot upload my database
database upload limit is only 64 mb but my file in 1.6 gb
Please help me
 
Check your default PHP version (php -v) and edit the php.ini of that version:

Code:
/usr/local/phpXX/lib/php.ini

Set the following:

Code:
upload_max_filesize = 2048M
post_max_size = 2048M

You'll probably have to raise max_input_time as well or you'll get a timeout:

Code:
max_input_time = 1200

And restart the php-fpm and/or webserver services, depending on your PHP handler.
 
Check your default PHP version (php -v) and edit the php.ini of that version:

Code:
/usr/local/phpXX/lib/php.ini

Set the following:

Code:
upload_max_filesize = 2048M
post_max_size = 2048M

You'll probably have to raise max_input_time as well or you'll get a timeout:

Code:
max_input_time = 1200

And restart the php-fpm and/or webserver services, depending on your PHP handler.
Where we can find out php.ini
 
Back
Top