How to import table in phpmyadmin? I got error of file size

后端 未结 11 1777
借酒劲吻你
借酒劲吻你 2021-02-04 02:39

I want to import database in phpmyadmin but i got error like this... \"No data was received to import. Either no file name was submitted, or the file size exceeded the maximum s

11条回答
  •  不知归路
    2021-02-04 03:06

    try to edit after change into php.ini :

    upload_max_filesize = 10M 
    post_max_size = 20M 
    memory_limit = 128M
    

    also change the value of max_execution_time

    EDIT: if you want then do all that stuff with command line:

    mysql -h[Host Name] -u[User Name] [Database Name]<[SQL File Name] -p
    

    through this you will import the database..

提交回复
热议问题