How to increase memory size for phpmyadmin

前端 未结 7 1692
谎友^
谎友^ 2021-01-02 11:00

I am facing some problem when I am trying to import magento database on localhost. It just import 18 table but in actual it contain 383 approx table. It gives error given be

7条回答
  •  失恋的感觉
    2021-01-02 11:25

    use this :

    c:\mysql\bin\> mysql -u username -p password database_name < filename.sql
    

    to import using command line

    or in php.ini

    memory_limit = 256M
    

    change this to some other larger value. But as Dan said using command line is preferable.

提交回复
热议问题