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

后端 未结 11 1776
借酒劲吻你
借酒劲吻你 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:20

    Copy the data from the file, put it into the sql tab of phpmyadmin, and press the "Go" button.

    0 讨论(0)
  • 2021-02-04 03:22

    Open php.ini file

    (Open xampp-control-panel. In front of Apache, there is a config button. Click on that and php.ini will be opened).

    In php.ini there is upload_max_filesize=2M

    update it to upload_max_filesize=10M (you can update it as per your requirement)

    After this, you have to restart apache in xampp-control-panel

    0 讨论(0)
  • 2021-02-04 03:28

    Increase the upload file size limit in the server. If you don't have access to it try breaking the file into parts, for different tables. Or you may use MySQL Dumper.

    0 讨论(0)
  • 2021-02-04 03:29

    Follow theses steps

    Go to the PHP folder -> search for php.ini

    Seach for the below line and change it according to your need.

    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 2M
    

    Restart the server to confirm changes.

    0 讨论(0)
  • 2021-02-04 03:30

    In Ubuntu 18.04 apache2 does change the upload size on the below php.ini file :

    root@xxxxxxxxxx:/etc/php/7.2/apache2# pwd
    
    /etc/php/7.2/apache2
    
    root@xxxxxx:/etc/php/7.2/apache2# vi php.ini 
    
    0 讨论(0)
提交回复
热议问题