Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase memory size for phpmyadmin

Tags:

php

phpmyadmin

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 below

Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 2089674 bytes) in /usr/share/phpmyadmin/libraries/import.lib.php on line 253

How this problem will configure. Is there need to change php.ini?

like image 305
Chauhan Avatar asked Feb 01 '11 07:02

Chauhan


1 Answers

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.

like image 67
ayush Avatar answered Oct 02 '22 16:10

ayush