Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
$15
Fatal allowed memory error on Wordpress MU
Fatal error: Allowed memory size of 268435456 bytes exhausted
I am also getting blank admin dashboard with I love into:
http://oversimplification.mvmt.com/wp-admin/
I submitted a request to my hosting provider PSEK and got this response.
It didn't work. The problem still is there.
----
Hi Rolando,
we've added following line to your public .htaccess file:
php_value memory_limit 512M
This should fix the issue, please try accessing the site now.
Please note that exceeding allowed memory size could indicate a memory leak or some other issue that require an experienced web-developer to have a look.
Scripts which hit PHP memory limit could overload the server - in this case we will disable the script or whole account.
Please let us know if you have any further questions or concerns.
-----
This has however not fixed my problem.
Can any of you help?
Username & Password to see error:
http://oversimplification.mvmt.com/wp-admin/
un: psek
pw: helpdesk
rolandobrown | 12/30/11 at 2:47am
Edit
Tutorial: How to assign prize money
Previous versions of this question:
12/30/11 at 5:33pm
| 12/30/11 at 5:34pm
(6) Possible Answers Submitted...
See a chronological view of answers?
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
-

Last edited:
12/30/11
5:38pmMaor Barazany says:It might be one of your plugins causing this, or your tempalte.
Try to remove plugins from the wp-plugins folder (this will auto-deactivate them, if you don't have access to admin panel)
Then check one by one who causes this.
-

Last edited:
12/30/11
6:02pmLuis Abarca says:I log in and looks ok, maybe the changes takes some time or you need to refresh your browser cache
Previous versions of this answer: 12/30/11 at 6:02pm
-

Last edited:
12/31/11
1:34amJulio Potier says:Hello
The "php_value memory_limit 512M" do not fixed the problem BUT it bypass it ... (refresh your browser) but i suggest your to remove this line, get the error again and find the real problem.
See you ! -

Last edited:
01/01/12
2:14pmChris Bunting says:Wordpress assigns the php_memory limit internally. You can try setting a higher limit to see if that helps. MU and resources intensive plugins are what usually cause this.
Open the file /wp-includes/default-constants.php at the top you'll see,
function wp_initial_constants( ) {
global $blog_id;
// set memory limits
if ( !defined('WP_MEMORY_LIMIT') ) {
if( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
} else {
define('WP_MEMORY_LIMIT', '32M');
}
}
if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) {
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
}
Change the line below, 64M to 128M or 256M
if( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
And see if that fixes the problem.
Chris -

Last edited:
01/03/12
7:56am -

Last edited:
01/03/12
4:49pmPatrick Leisegang says:define('WP_MEMORY_LIMIT', '512M');
add that line into your wp-config.php file. it shoud make it work...
i DO NOT recommend altering core files. this will break on next update you make!
This question has expired.
Current status of this question: Community pot
Please log in to add additional discourse to this page.
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
