Ser you an allowed memory size exhausted error message i WordPress?
Det här är ett av de vanligaste WordPress error, och du kan enkelt fixa det genom att öka PHP-minneslimiten i WordPress.
I den här artikeln kommer vi att visa dig hur du fixar WordPress memory exhausted error genom att öka PHP:s memory limit.
Vad är WordPress Error om minne uttömt?
WordPress memory exhausted error är ett message som du kan se om din website har svårt att utföra sina uppgifter.
WordPress är built-in med PHP, ett programmeringsspråk på serversidan som behöver minne för att kunna run.
Precis som alla andra datorer har web servers en limit av minne för att kunna run flera applikationer kl. samma tid. WordPress hosting providers tilldelar specifika minnesstorlekar till olika applikationer, inklusive PHP.
När din WordPress-kod är obligatorisk och kräver mer minne än vad som tilldelats som standard, visas detta message:
Fatal error: Allowed memory size of 33554432 bytes exhausted (försökte allokera 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx
Din WordPress site kan ha förbrukat minnet på servern om den har gjort det:
- Många images, videoklipp och andra typer av media
- Massor av oanvända tillägg till WordPress
- Växte ur sina resurser för webbhotellets plan
Som standard försöker WordPress automatiskt att öka PHP:s minneslimit om den är mindre än 64 MB. Men 64 MB är ofta inte tillräckligt högt.
Med detta sagt, låt oss se hur du enkelt kan öka PHP:s minnes limit i WordPress för att undvika error om att minnet är förbrukat.
Du kan använda snabblänkarna under för att navigera genom tutorialen:
Note: Några av dessa metoder kräver att du direkt editerar dina WordPress-filer. Vi föreslår att du säkerhetskopierar din website först för att undvika att ytterligare error dyker upp på din website.
Alternativ 1: Editera wp-config.php-filen
Först måste du editera wp-config.php-filen på din WordPress site. Detta är en av WordPress core-filer som ligger i rotkatalogen, vanligtvis public_html.
Du måste använda en FTP-klient som FileZilla eller filhanteraren i webbhotellets kontrollpanel.
Följaktligen måste du klistra in följande rad i wp-config.php-filen precis före den som säger, That's all, stop editing! Trevlig bloggning.
define( 'WP_MEMORY_LIMIT', '256M' );
Den här koden säger till WordPress att öka limiten för PHP-minnet till 256 MB.
För mer details, se vår Step-by-Step guide om hur du hittar och editerar wp-config.php filen.
När du är klar måste du save dina ändringar och uploada din wp-config.php-fil tillbaka till din server.
You can now visit your WordPress site, and the memory exhausted error should have disappeared.
Alternativ 2: Editera .htaccess-filen
Nästa metod är att editera .htaccess-filen. Denna fil är också placerad i WordPress-webbplatsens rotfolder.
Här måste du klistra in följande kod före raden där det står #END WORDPRESS
.
php_value memory_limit 256M
På samma sätt som den tidigare koden kommer den att berätta för WordPress att öka PHP-minneslimiten till 256 MB.p
Därefter sparar du dina ändringar och uploadar filen tillbaka till din web server. You can now open your WordPress website again to see if the memory limit error has gone.
Om du inte kan hitta .htaccess-filen, kontrollera vår guide om varför .htaccess-filen kan saknas och hur du hittar den.
Alternativ 3: Kontrollera din php.ini-fil
Om metoderna ovan inte fungerar kanske du vill ta en titt på filen php.ini.
php.ini är en fil som kontrollerar dina PHP-inställningar, inklusive PHP-versionen och PHP-skript. Det är inte en WordPress core-fil, eftersom din hosting provider vanligtvis hanterar den.
Du kan kontrollera dess kod för att se din limit för minnesanvändning i PHP. För mer detaljer, kan du se vår guide om hur du hittar och editar php.ini-filen.
Men eftersom det här är en avancerad metod rekommenderar vi att du istället kontaktar supportteamet hos din hosting provider för att se om de kan öka WordPress memory limit manuellt. Annars kan detta leda till ytterligare error.
Du kan läsa vår guide om hur du på rätt sätt ber om support för WordPress för mer information.
Alternativ 4: Upgrading to your WordPress webbhotell
Om du konstant stöter på error om att minnet är uttömt kan det vara ett tecken på att din website har vuxit ur sin nuvarande plan för webbhotell.
När din website lockar fler besökare och adderar mer content blir det obligatoriskt med mer resurser för att den ska fungera smidigt. Upgrading till en plan med en högre minnesallokering kan vara en permanent lösning.
Överväg att uppgradera ditt WordPress webbhotell om:
- Du har provat de tidigare lösningarna och error kvarstår.
- Your website har ökat betydligt i trafik eller content.
- You plan to add features or functionality that require more resources.
Bluehost erbjuder prisvärda och tillförlitliga WordPress webbhotell planer som kan skala med din webbplats behov. De tillhandahåller en användarvänlig plattform som är särskilt optimerad för WordPress, vilket gör det enkelt att hantera din website.
Om du använder vår Bluehost coupon code, då kan du få upp till 61% rabatt på ditt första köp. Klicka bara på knappen under för att få det:
Så här undviker du att trötta ut ditt minne i WordPress
Nu när du har fixat WordPress error med uttömt minne, följer här några proaktiva steg för att förhindra att det händer igen:
- Deactivate oanvända tillägg. Många tillägg bidrar till minnesanvändningen. Se regelbundet över dina installerade tillägg och deaktivera dem som du ej aktivt använder för att gratis frigöra minne för viktiga uppgifter.
- Optimera images. Stora images kan sluka mycket minne. Överväg att använda ett plugin som EWWW Image Optimizer för att automatiskt komprimera images innan du uppladar dem till din site.
- Använd ett plugin för caching. Tillägg för caching lagrar data på webbplatsen, vilket minskar behovet av att WordPress återskapar den vid varje besök. Detta kan avsevärt förbättra website-prestandan och minska minnesanvändningen.
Vi hoppas att den här artikeln hjälpte dig att lösa error med WordPress minne uttömt genom att öka PHP:s minnes limit. Du kanske också vill se vår Step-by-Step Beginner’s Guide till felsökning av WordPress error och våra expertval för de bästa WordPress-tilläggen för att utveckla din site.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
Nilanjan Roy
That fixed my issue too Thanks a lot
Alasdair MacNeill
This fixed my issue – thank you for the advice!
Momodu Oladapo Ibraheem
Thanks works for me!!! Your site has been a source of refuge always for WP
Joshua
Great article, i encountered this problem when i installed a new wordpress theme. While you have accurately told us how to solve this problem, i’m thinking what is the impact of having a website that runs on high php memory on web hosting resources, etc?
Many thanks.
WPBeginner Support
Hey Joshua,
It depends. If you are on shared hosting and your website is continuously using more memory than it should, then your web host will automatically kill that particular process.
Administratör
Aaron Silva
Thanks a lot! it worked!!!!!
Olayika Olumayokun
Thanks so much for this type of post, really helped.
Waqas Gulraiz
Worked! thanks
Nicole
I always forget how to fix this error when I encounter it. Luckily I found your post, and it worked like a charm. Panic mode is now over. Thank you!
Laercio
I had to edit php.ini and increase memory_limit from 64M to 256. It worked fine!
Daniel
Updating the php.ini file from 32M to 64M worked for me! Thanks!
Roger
Thank you, this helped me a lot!
Cole Ryan
Simple. Effective. Thank you.
Jos Schuurmans
Thanks for the tut, good stuff!
QUESTION: After increasing from the default 64M to 256M, my white screen disappeared and the site is up. Is there a reason to scale down the memory again?
Cheers,
Jos
WPBeginner Support
No, you can continue using the new memory limit.
Administratör
Chris
Today is the second time that I’ve needed to refer to this post (bad memory – much like my site).
Great info, keep up the fantastic work.
Nathalie
God bless you guys!!!
Luiz
Thank you, this article helped me a lot!
Arjuna
Hi!
How can I mixed this error?
Fatal error: Allowed memory size of 176160768 bytes exhausted (tried to allocate 78 bytes) in /home/brandkpl/public_html/wp-includes/taxonomy.php on line 3146
Kay
Hi there,
Is there a way to increase the memory and make sure it stays that way when updating WP?
Everything I update my site, I have to do it all over again…
Thanks for your help!
Fazzy
i also found that there could be a chance that in the root folder there will be a ”maint” folder, although normally this will give you a screen saying its under maint which you will then know what to do.
but in my instance the ”Maint” in the root folder just showed the WSOD once it was removed i was back up and running.
anand
its working , thanks
Avinash
Thank you so much
Jake
Thank you so much! Helped like a charm!
shibby
What a legend!! Been frustrated by this all weekend and now sorted
Tom
Thank you!!!!!
Dee
Thanks a bunch!
Nitin Yadav
Allowed memory size of 67108864 bytes exhausted (tried to allocate 229376 bytes)
My Problem is this
Kendra
Thank you! It’s been a while since I ran into this problem and forgot how to fix it!
lauren
this saved me hours of struggle, thank you so much!
kandra
Nice one, i wonder I could increase the memory of instant wp aplication in order to successfully migrate my blog in blogger to wordpress.
Mitra
OMG! Thanks so much for this article.
goatlady
Thank you so much.. works perfectly..
Laxmanrao
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 78 bytes) in /home/xxxx/public_html/wp-includes/wp-db.php on line 1837
lexspark daville
increasing the memory limit worked for me….thanks a lot
Vikash Kumar
Thanku you soo much… i was facing this issue and your post saved my day
Neha Srivastava
Hi,
i am getting this error, while importing demo and uploading plugin.
i have already try out these methods. pls help.
500 – Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.
Sue P.
Thank you, it worked!
Taim
I increased the limit to 128M but the same problem. Then I increased it to 256M and now its working fine.
sheila
Thank you! Worked like a charm!
Amit Sharma
Now its working. Thanks a lot for sharing such a great information.
akshay
work like charm thank you very much…..
Emily
Hi, this sounds like the issue I’m having with Prophoto – however I can’t login to the admin area – as I get a blank white screen – to make the changes you suggest, is there another way? Thanks so much
ginger
Hey, I probably have a huge problem here.. but the only wp-config file I can find on my Air is wp-config-sample.php.
total blank webpage situation – i doubt it’s memory since i don’t have more than a couple pages…
maría
Thank you so much!!
Steven
Thanks! I had to use 128M, but it works like a charm!
Jeff Moyer
It’s usually easier to get your web host to do this rather then doing it manually, if you screw something up you can make your website worse.
kelvin carter
which line of code should i past it
khasim
Thank you so much my issue is solved .
AmigoGeek
Thank you so much.
I had to put: 70MB and went back to work.
Blogger
”First open your wp-config.php which is located in the root WordPress directory. Then add the following line inside the main php tag:”
I really have no idea what to click to find the wp-config.php or the root WordPress Directory. Is it in the Settings? Sorry. I just can’t figure out. Thanks.
WPBeginner Support
Please take a look at our guide on how to edit wp-config.php file in WordPress.
Administratör
Ahan Jain
I can’t find it. Where can I find my we-configure.php file.
Francois
Hi,
In order to locate your wp-config.php file, you will need to access your clientzone of your web host and locate file manager.
In your public_html folder, you will find your wp-config.php file.
Hope this helps you.
Brittany Goldsby
Thank you so much for this! Me and my office manager was about to pull our hair out because we couldn’t figure out how to increase the memory limit on a website we were working for a client. We actually increased the memory to ’128M’ because ’64M’ was already there and it worked like a charm. Thanks!
Olufunmilola Soewu
Thank you sooooo much, I’h highly grateful. Keep up the good work!!
Thanks.