Hi there,
I have set the PHP Memory Limit on my server to 64MB.
But when I check it with ServerBuddy it shows 256MB(!).
When I check with a <?php phpinfo(); ?> file I see 64MB.
Is this just a bug from ServerBuddy?
Kind regards,
Jaap
Hi there,
I have set the PHP Memory Limit on my server to 64MB.
But when I check it with ServerBuddy it shows 256MB(!).
When I check with a <?php phpinfo(); ?> file I see 64MB.
Is this just a bug from ServerBuddy?
Kind regards,
Jaap
Hmmm I found this:
if ( current_user_can( 'manage_options' ) )
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
and changed it to:
if ( current_user_can( 'manage_options' ) )
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '128M' ) );
Don't know if this is the best way to do it?
Kind regards,
Jaap
You must log in to post.