Consider:
Now I am getting this error. How can I resolve this issue?
I found found some related issue, but that told me change max-size inside file php.ini, so how can I edit file php.ini (phpmyadmin-config)?
Importing into MySQL, the database size is above 100 MB. And the MySQL database size converts it into a ZIP file, and then import working, but it is not inserting all tables.
2
Answers
The configuration file is located at the below path:
Now increase the value of:
Then restart the server:
I’m not sure which OS or Apache server you’re using right now.
If you are not aware of the
php.ini
file path then create oneinfo.php
file inside your www/htdocs folder and write the below line of code inside that file.<?php echo phpinfo(); ?>
Execute the above file in your web browser. You will find the loaded
php.ini
configuration file path, like shown below.Now go to the file path and increase the values of the below two variables as per your need.
PS: Don’t forget to restart your Apache server. 🙂