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!
mohadese esmaeeli
With your permission, I’d like to add a note for users to the article:
Please note that htaccess is a hidden file. First, check if it exists. In case you couldn’t find the .htaccess file in your hosting, you can create one using text editor programs like Notepad. Simply create a file named htaccess. Alternatively, in the public_html directory, click on ”New File” and create a file with the same name.
mohadese esmaeeli
I have encountered this issue multiple times, and it seems to be one of the most common problems in the WordPress domain. Each time, I either contacted the hosting support or edited the htaccess file to resolve the issue. The htaccess file appears to be like a magic solution, and whenever an issue arises, it can be quickly reviewed and fixed.
Mrteesurez
I used to encounter some errors like this on my websites but I didn’t know what to do. Something when I tried to solve it, I just uninstall the step and re-install it back and upload the backup.
I noticed the problems still persist, when I enable wp debug mode, t then see the exact errors and the it’s source.
I later find this guide and implented it and it works.
Thanks.
WPBeginner Support
Glad to hear our guide was helpful!
Administratör
karma tsheten
AFter updating my .htaccess it gives me this error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
WPBeginner Support
To be safe, for the internal server error we would recommend going through the steps in our article below:
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/
If removing the code from the htaccess solves the issue, we would recommend reaching out to your host to see if they have a setting that could be the source of the conflict.
Administratör
Jiří Vaněk
Regarding the .htaccess file, be cautious. Many shared web hosting providers may have directives for increasing the memory limit disabled. Such a directive in the .htaccess file can cause a 500 error on the website, requiring its removal or commenting out. Be careful with this. Sometimes, simply increasing the memory limit may not solve the problem but rather delay it, like a painkiller. The pain might subside, but it doesn’t mean the cause has been resolved. Therefore, while increasing the memory limit might seem like a solution, it’s also important to check what is consuming the memory. Sometimes, people increase the memory limit from 512 MB to 1024 MB without considering whether it’s necessary, and whether the memory limit isn’t masking an underlying issue on the website.
WPBeginner Support
Thank you for sharing your feedback on the htaccess change. Unless the host has very strict rules in place adding to the htaccess shouldn’t cause an error it is more likely to not work and would require you reach out to the host to request an override.
Administratör
ROOK
SAVED THE DAY!! TY
WPBeginner Support
Glad our guide could help!
Administratör
Qamar Shafique
Thanks for this help.
WPBeginner Support
You’re welcome!
Administratör
Aisha
It doesn’t solve my problem still shows an error after placing the code “define( ‘WP_MEMORY_LIMIT’, ‘256M’ );” and I also change the size of Memory_limit of Php.ini file
WPBeginner Support
As we state in the article, if our code does not work, there is a good chance your hosting provider is overriding the memory limit and you would need to reach out to your host to fix the error.
Administratör
Sohaib Siddiq
It doesn’t solve my problem still shows an error after placing the code ”define( ’WP_MEMORY_LIMIT’, ’256M’ );” & this is my front-end page showing
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 8192 bytes) in /home/X/wp-includes/class-wp-dependencies.php on line 260
WPBeginner Support
If the code does not work for you, we recommend reaching out to your hosting provider as they may have a limit set on their end that could be the root of the issue.
Administratör
Zachary Murri
Thank you so much <3
WPBeginner Support
You’re welcome
Administratör
Bogosi
Thank you for this!
WPBeginner Support
You’re welcome!
Administratör