php - Fatal error: Out of memory Zend Error / PhpMyAdmin -


i using wamp application. developing application in zend. when work application receiving following error. not able @ phpmyadmin. error totally vanish wamp!! using wampserver2.1e-x32

fatal error: out of memory (allocated 1048576) (tried allocate 393216 bytes) in   d:\wamp\apps\phpmyadmin3.3.9\libraries\config.default.php on line 2051 

i have did following still issue remains same:

i have set memory limit 0 in php.ini files. googled , found if send memory limit 0 take unlimited. tried 32m,64m,128m. specified 1g tried too.

tried setting ini_set('memory_limit','16m'); ,32m , 256m no use.(even tried 16384m)

do want increase execution time? help?

this out of memory message has happened me before when have tried create arrays large sensible.

i tried following solution , works well!

inside wamp\apps\phpmyadmin3.3.9\config.inc.php file below line 24 added following code:

$cfg['memorylimit']  = '128m'; 

and works well;

after inserting line 19-25 in config.inc.php file:

/* end of servers configuration */  $cfg['defaultlang'] = 'en-utf-8'; $cfg['serverdefault'] = 1; $cfg['uploaddir'] = ''; $cfg['savedir'] = ''; $cfg['memorylimit'] = '128m'; 

hope one!!


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -