how do i increase phpmyadmin memory size?

jt2377

Verified User
Joined
Dec 26, 2005
Messages
55
my customer is having the fatal error problem with phpmyadmin.

the error is allowed memory size of 8388608 bytes exhausted. how do i increase the memory size or how do i fix this problem?

do i increase in php.ini? where is php.ini located at in FreeBSD 5.4?

my server is FreeBSD 5.4 w/DirectAdmin.

thank you for your help
 
Try /usr/local/lib/php.ini it may also be linked in at /usr/local/etc/php.ini

Look for the variables:

memory_limit

and

post_max_size

Restart apache webserver when you are completed with editing php.ini.
 
I have same problem and my php.ini look like this :


max_execution_time = 30 ; Maximum execution time of each script, in seconds

max_input_time = 60 ; Maximum amount of time each script may spend parsing request data

memory_limit = 20M ; Maximum amount of memory a script may consume (8MB)

; Maximum size of POST data that PHP will accept.

post_max_size = 30M


is this setting are right ?

I still having memory problem using this setting and vbulleting .

thanks for any help .
 
increase


memory_limit = 20M ; Maximum amount of memory a script may consume (8MB)

; Maximum size of POST data that PHP will accept.

post_max_size = 30M
 
thank for reply I notice that my php.ini look like is a link on my ftp sorry I new to this and afraid of mess thing up .



check picture
 

Attachments

  • ini.gif
    ini.gif
    24 KB · Views: 292
All you do is increase those values to higher values that you want. It is fine if its a link it may be linked to another location.

Change the:

20M to a higher value like 128M
 
Back
Top