phpmyadmin exhausting memory. Isn't Linod 360 sufficient?
display_errors = On
log_errors = Off
Now, when I run phpmyadmin, I get the following Fatal Error:
Fatal error: Allowed memory size of 262144 bytes exhausted (tried to allocate 311296 bytes) in /usr/share/phpmyadmin/libraries/common.inc.php on line 630
However, my memory_limit in php.ini is
memory_limit = 64MB
So why does it say my allowed memory size if 262144 bytes. It should say 64MB (64 x 1024 x 1024)?
4 Replies
Just one example of how stupid PHP can be
memory_limit = 64MB ; Maximum amount of memory a script may consume(16MB)
in the php.ini file? Anyway, really appreciate the feedback. I changed it to
memory_limit = 64M ; Maximum amount of memory a script may consume(16MB)
and phpmyadmin works just fine.
Way more secure and it doesn't eat up 1/6 of your memory just for a server based SQL GUI.