Recently, I encountered the problem of using phpadmin to import when the database is too large. The new version of phpadmin has an import limit of 8M, and the old version may be 2M. What should I do if my database is dozens of megabytes?
First of all, if you have a dedicated server or vps, you can find the php.ini file under Apache to modify the 8M or 2M limit. How to modify it?
Search and modify these three
Copy the code The code is as follows:
upload_max_filesize = 2M
post_max_size = 8M
memory_limit = 128M
After modification, restart the service and go to phpadmin to have a look. It should be fine!
http://www.bkjia.com/PHPjc/326606.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326606.htmlTechArticleRecently encountered the problem of using phpadmin to import when the database is too large. The new version of phpadmin import limit is 8M, the old The version may be 2M. What should I do if my database is dozens of megabytes? First...