How to import large sql file in phpmyadmin

前端 未结 20 1430
一向
一向 2020-11-29 17:04

I want to import a sql file of approx 12 mb. But its causing problem while loading. Is there any way to upload it without splitting the sql file ?

20条回答
  •  既然无缘
    2020-11-29 18:02

    You will have to edit the php.ini file. change the following upload_max_filesize post_max_size to accommodate your file size.

    Trying running phpinfo() to see their current value. If you are not at the liberty to change the php.ini file directly try ini_set()

    If that is also not an option, you might like to give bigdump a try.

提交回复
热议问题