Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Så här fixar du 500 Internal Server Error i WordPress

Ser du en 500 internal server error i WordPress?

Error i den interna servern är ett av de vanligaste WordPress felen.

Det är lite knepigt eftersom error inte ger någon annan information, många Beginnare tycker att det är ganska frustrerande.

I den här artikeln visar vi dig hur du enkelt fixar 500 internal server error i WordPress.

Fixing the internal server error in WordPress

Här följer en snabb översikt över de ämnen som vi kommer att täcka i den här artikeln:

Vad är 500 Internal Server Error?

500 internal server error är ett vanligt error på en web server. Det är ej specifikt för WordPress utan kan uppstå på vilken website som helst.

500 i message är tekniskt sett en HTTP error-kod. Om du slår upp den här koden visas bara dess standard description:

”500 Internal Server Error response code indicates that the server encountered an unexpected condition that prevented it from fulfilling the request.”

Det här är ett generiskt ”catch-all”-felmeddelande, vilket innebär att servern inte kunde tilldela ett bättre, mer användbart felmeddelande när den stötte på the issue.

The error page ser olika ut beroende på vilken programvara för web server (Nginx eller Apache) din website använder och vilken webbläsare du använder.

Så här kan en page med Apache error se ut:

Internal server error page on Apache

Det kan se annorlunda ut om du använder NginX och Google Chrome.

Det kommer också att se annorlunda ut om Google Chrome inte kan hitta en error page att displayed:

Google Chrome http 500 error

För Beginnare kan detta vara otroligt frustrerande. Ingen ledtråd eller message pekar dem i rätt riktning för att snabbt fixa det.

Att fråga hur man fixar ett internt error på servern gillar att fråga din läkare hur man fixar smärtan du upplever utan att berätta var smärtan är.

Men om du känner till de vanliga orsakerna som utlöser detta fel kan du försöka fixa dem en efter en för att lösa felet utan att bryta någonting.

Vad är orsaken till Internal Server Error i WordPress?

Internal server error i WordPress orsakas ofta av en korrupt .htaccess-fil, dåligt kodade tillägg eller ditt aktiva WordPress theme.

Andra möjliga orsaker till error på intern server i WordPress är PHP memory limit eller korrupta core WordPress filer.

Under vissa förhållanden kan det interna server error bara dyka upp när du försöker komma åt WordPress admin area medan resten av webbplatsen fungerar bra.

Vanligtvis utlöses error innan WordPress kan hämtar och servern kan inte få tillräckligt med information om vad som stoppade den.

För mer information, se vår artikel om hur WordPress fungerar bakom kulisserna.

Med detta sagt, låt oss nu ta en titt på hur du går tillväga för att felsöka det interna server error i WordPress.

Video Tutorial

Subscribe to WPBeginner

Om du föredrar skriftliga instruktioner är det bara att fortsätta läsa.

Fixa felet 500 Internal Server i WordPress

Innan du börjar med felsökningen ska du se till att du har en komplett WordPress backup av din website till hands.

Om du har tillgång till WordPress admin area kan du använda ett WordPress backup plugin för att skapa en fullständig backup av din website.

Vi rekommenderar att du använder Duplicator för att hantera detta. Det hjälper dig ej ej bara att snabbt säkerhetskopiera din website, utan du kan även lagra dina backups i molnet, och viktigast av allt, du kan återställa din website från backupen.

Om du däremot inte har tillgång till admin area i WordPress kan du manuellt skapa en backup av WordPress med hjälp av phpMyAdmin och en FTP-klient.

Följ därefter följande steg för att troubleshoota och fixa det interna server error på din website.

Clear cachen i WordPress och webbläsaren

Webbläsare och dina tillägg för caching i WordPress kan ibland av misstag lagra en cachad kopia av en error page.

Det enklaste sättet att fixa detta är att först cleara din webbläsares cache.

Clear cache

Efter det, om du har tillgång till WordPress admin area på din website, då kan du tömma WordPress cache genom att besöka din caching plugin inställningar page.

För detaljer, se vår tutorial om hur du clearar WordPress cache.

Kontrollera om .htaccess-filen är korrupt

Filen .htaccess är en konfigurationsfil för servern som också används av WordPress för att ställa in redirects.

En av de vanligaste orsakerna till error i intern server är en skadad .htaccess-fil.

Det enklaste sättet att fixa detta är att helt enkelt besöka Settings ” Permalinks page i WordPress admin area och sedan klicka på knappen ”Save Changes” utan att göra några ändringar kl.

Update permalinks to regenerate .htaccess file

WordPress kommer nu att försöka updating din .htaccess-fil eller generera en new åt dig. You can now visit your website to see if this has resolved the internal server error.

Om error fortfarande visas måste du kontrollera att WordPress har kunnat generera eller skriva till .htaccess-filen.

Ibland kan det hända att WordPress på grund av behörigheter för filer och directories inte kan skapa eller skriva till din .htaccess-fil.

Du kan nu försöka ersätta .htaccess-filen manuellt. Först måste du logga in på din website med FTP eller appen File Manager under webbhotellets kontrollpanel.

Därefter måste du byta namn på dinhuvudfil .htaccess till något som gillar .htaccess_old. Detta gör att du kan behålla filen som en backup, men WordPress kommer inte att känna igen den.

För att byta namn på .htaccess-filen måste du logga in på din site med FTP eller appen File Manager i webbhotellets cPanel-instrumentpanel.

När du har anslutit dig kommer .htaccess-filen att ligga i samma directory där du hittar foldrar som gillar wp-content, wp-admin och wp-includes.

Högerklicka bara på .htaccess-filen och byt namn på den till .htaccess_old.

Rename .htaccess file

Därefter måste du skapa en new .htaccess-fil.

I din sites rotfolder högerklickar du och väljer sedan alternativet ”Create new file” i din FTP-klient eller File Manager app.

Create new htaccess file

Döp den nya filen till .htaccess och klicka på ”OK” för att save den.

Nu är denna .htaccess-fil för närvarande tom, och du måste add to standard WordPress omskrivningsregler till den.

Högerklicka bara på filen och välj sedan ”View/Edit” i din FTP-klient eller app för filhantering.

Edit .htaccess file

Den tomma filen öppnas i en plain text editor som gillar Notepad eller TextEdit.

Nu måste du kopiera och klistra in följande kod inuti den:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

Den här koden är den standardregeluppsättning som används av WordPress. Glöm inte att save your ändringar och uploada filen tillbaka till servern.

You can now visit your website to see if this has resolved the internal server error.

Om det gjorde det, ge dig själv en klapp på axeln eftersom du fixade det interna server error.

Viktigt: Innan du går vidare med andra saker, se till att du går till Settings ” Permalinks page i WordPress admin area och klickar på knappen Save utan att göra några ändringar. Detta kommer att återskapa .htaccess-filen åt dig med korrekta omskrivningsregler för att säkerställa att dina pages med post inte returnerar ett 404 error.

Om det inte fungerade för dig att kontrollera lösningen för den korrupta .htaccess-filen, måste du fortsätta att läsa den här artikeln.

Öka PHP:s limit för minne

Ibland kan ett internt error på servern uppstå om ett skript förbrukar hela PHP:s limit för minne.

Det enklaste sättet att öka limiten för minnet i PHP är att editera filen wp-config.php. Var försiktig när du gör detta om du är en Beginner. Du måste följa instruktionerna noggrant eftersom även små misstag i WordPress core-filer kan förstöra din site.

Börja med att ansluta till din WordPress website med hjälp av en FTP-klient eller appen File Manager under webbhotellets panel.

Du hittar filen wp-config.php i huvudfoldern på din website. Högerklicka på den och välj ”Download”. Detta säkerställer att du har en backup av filen om något skulle gå fel.

När du har saved den kan du högerklicka på den och select ”View/Edit”.

Edit wp-config file

I filen wp-config.php måste du add to följande kod precis ovanför raden som lyder: ”That’s all, stop editing! Trevlig publicering”:

define( 'WP_MEMORY_LIMIT', '256M' );

För mer detaljer, se vår tutorial om hur du ökar PHP-minneslimiten i WordPress.

Obs/observera: Om 256M inte löser problemet kan du prova att öka till 512M.

Om du bara ser det interna serverfelet när du försöker logga in i din WordPress-admin eller uppladar en image i din wp-admin, bör du öka minnesgränsen genom att följa dessa steg:

  1. Skapa en tom textfil på din dator och döp den till php.ini
  2. Klistra in den här koden där: minne=256MB
  3. Save filen
  4. Uppladda den till din /wp-admin/ folder med hjälp av FTP

Om du fixade problemet genom att öka minneslimiten, har du bara fixat problemet tillfälligt. You still need to find the cause that is exhausting your memory limit.

Det kan vara ett dåligt kodat plugin eller till och med en funktion i temat. Vi rekommenderar starkt att du ber ditt WordPress webbhotell att titta i loggingarna på servern för att hjälpa dig att hitta den exakta diagnosen.

Om att öka PHP:s minneslimit inte fixade problemet för dig, kommer du att behöva mer felsökning.

Deactivate alla tillägg till WordPress

Om ingen av lösningarna ovan fungerade för dig, orsakas detta error troligen av ett specifikt plugin som installerats på din website.

Det är också möjligt att det är en kombination av tillägg som inte spelar bra med varandra.

Om du har tillgång till WordPress admin area på din website, kan du helt enkelt gå till plugins page och deactivate alla WordPress tillägg.

Deactivate all plugins

Men om du inte har tillgång till admin area i WordPress kan du deactivate alla tillägg i WordPress med FTP.

Anslut bara till din WordPress website med en FTP-klient eller filhanteringsappen under webbhotellets panel.

När du är ansluten, navigera till mappen /wp-content/ och byt namn på plugins folder till plugins.deactivated.

Plugins deactivated via FTP

WordPress letar efter tillägg i mappen Plugins. Om mappen Plugins inte hittas deaktiveras alla tillägg automatiskt.

You can now try visiting your website to see if this resolved the internal server error on your website.

För att återställa alla dina plugins kan du helt enkelt byta namn på mappen ”plugins.deactivate” tillbaka till plugins.

Your tillägg kommer nu att återställas, men de kommer fortfarande att vara deaktiverade.

Nu kan du aktivera enskilda tillägg och besöka din website för att ta reda på vilket tillägg som orsakar det interna server error.

För mer detaljer, se vår guide om hur du deaktiverar alla WordPress tillägg utan WP-Admin.

Om deactivate av alla tillägg inte fixade det interna server error på din website, fortsätt att läsa.

Byt till ett standardtema för WordPress

En möjlig orsak till error i den interna servern kan vara någon kod i your WordPress theme.

För att avgöra om så är fallet måste du byta ditt tema till ett standardtema för WordPress.

Om du har tillgång till admin area på WordPress går du till sidan Appearance ” Themes. Om du redan har ett standardtema installerat kan du helt enkelt klicka på knappen Activate för att byta tema.

Activate a default theme

Om du inte har ett standardtema installerat kan du clicka på knappen ”Add New” högst upp och installera ett standardtema (Twenty Twenty-Three, Twenty Twenty-Two, och så vidare).

Om du inte har tillgång till admin area i WordPress kan du ändå byta till ett standardtema.

Anslut till din WordPress website med hjälp av en FTP-klient och navigera till /wp-content/ foldern.

Right-click to select the themes folder and download it to your computer as a backup.

Download theme folder

Därefter måste du delete the themes folder från din website. När den är borttagen går du vidare och skapar en new themes folder.

Your new themes folder kommer att vara helt tom, vilket innebär att du inte har några WordPress themes installerade för tillfället.

Därefter måste du besöka WordPress temakatalog och ladda ner ett standardtema för WordPress till din dator.

Download a default theme

Din webbläsare kommer sedan att downloada temat som en ZIP-fil till din dator.

Locate filen på din dator och packa sedan upp den. Windows-användare kan packa upp filen genom att högerklicka på den och sedan välja ”Extract All”. Mac-användare kan dubbelklicka på ZIP-filen för att extrahera den.

Extract theme files

Du kommer nu att se en folder som innehåller your WordPress theme.

Byt tillbaka till din FTP-klient eller File Manager och uploada den här foldern till den tomma themes-mappen.

Upload theme folder

När den har laddats upp kommer WordPress automatiskt att börja använda standardtemat.

You can now visit your website to see if this resolved the internal server error.

Om detta inte fungerar kan du ladda upp dina WordPress themes igen från backupen eller byta tillbaka till det theme du använde tidigare.

Oroa dig inte för det. Det finns fortfarande några fler saker du kan göra för att fixa error.

Uppladdning av core-filer

Om alternativen för plugin och theme inte fixade det interna erroret på servern, är det värt att ladda upp /wp-admin/ och /wp-includes/ folders igen från en ny WordPress install.

This will NOT remove any of your information, but it may solve the problem in case any file is corrupted.

Först måste du besöka WordPress.org website och klicka på knappen ”Download”.

Download WordPress

Detta kommer att downloada WordPress ZIP-filen till din dator.

Gå vidare och extrahera ZIP-filen. Inuti den hittar du en wordpress folder.

WordPress folder extracted

Därefter måste du ansluta till din WordPress website med hjälp av en FTP-klient.

När du har anslutit dig går du till rotmappen på din website. Det är den folder som har mapparna wp-admin, wp-includes och wp-content inuti sig.

Öppna mappen WordPress på din dator i den vänstra columnen.

Nu måste du välja all filer i wordpress foldern och uploada dem till din website.

Upload core WordPress files

Din FTP-klient kommer nu att överföra dessa foldrar till din server.

Du får då frågan om du gillar att skriva över filerna. Select ”Overwrite”, välj sedan ”Always use this action” och kontrollera checkboxen ”Tillämpa to current queue only”.

Overwrite WordPress core files

Din FTP-klient kommer nu att ersätta dina äldre WordPress-filer med new, fräscha kopior.

Om dina WordPress-filer var skadade, kommer detta steg att fixa det interna server error för you.

Aktivera loggar för debug i WordPress

WordPress levereras med ett built-in system för att hålla loggar för debug.

Du kan aktivera det genom att använda pluginet WP Debugging. För mer detaljer, se vår guide om hur du installerar ett plugin för WordPress.

När pluginet har aktiverats kommer det att aktivera debugging loggar på din WordPress website.

Om du inte har tillgång till admin area på din WordPress-webbplats kan du aktivera debug genom att lägga till följande kod i din wp-config.php-fil:

define( 'WP_DEBUG', true);
define( 'WP_DEBUG_LOG', true); 

När du har aktiverat loggar för debug kan du viewa dessa loggar genom att använda en FTP-klient och navigera till mappen /wp-content/.

Debug log

Du kan öppna debug errors log file i en textredigerare, och den kommer att visa dig en lista över fel och varningar som uppstod på din website.

Vissa error och varningar kan vara harmlösa incidenter som kanske inte behöver fixas. Men om du ser ett internt error på servern på din website, kan dessa peka dig i rätt riktning.

Fråga din hosting provider

Om alla metoder misslyckas med att fixa det interna server error på din website, då är det dags att få lite mer hjälp.

Kontakta support teamet på ditt webbhotell så kan de kontrollera loggingarna på servern och hitta grundorsaken till error.

Om du vill fortsätta felsöka på egen hand kan du läsa vår ultimata guide för felsökning i WordPress för nybörjare.

Vi hoppas att den här artikeln hjälpte dig att fixa error i intern server i WordPress. Du kanske också vill se vår kompletta lista över de vanligaste WordPress error och vår guide om hur du väljer den bästa hosting providern.

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.

Avslöjande: Vårt innehåll stöds av våra läsare. Det innebär att om du klickar på några av våra länkar, kan vi tjäna en provision. Se hur WPBeginner finansieras, varför det är viktigt, och hur du kan stödja oss. Här är vår editoriala process.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

Den ultimata WordPress-verktygslådan

Få GRATIS tillgång till vår verktygslåda - en samling WordPress-relaterade produkter och resurser som varje professionell användare bör ha!

Reader Interactions

677 kommentarerLämna ett svar

  1. 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!

  2. krzysiek

    in my case it was simple although i spend few hours… I typed wrong sql server. Suprisingly it didn’t throw window with wrong config settings.

  3. Ronaldo

    Hi!

    Thanks for this information. I renamed the .htaccess and my sites are up and running. My server is godaddy.
    My question is, can I erase the old renamed .htaccess , because I called many times to godaddy to fix this kind of 500 internal error after many callings ?

    Thanks

  4. brooke

    thank you! that just saved the day when I made the .htaccess ftp change. i can breathe again… ; D

  5. itechaleart

    i am facing this 500 error to last 15 days on godaddy hosting. i have tried everything what ever you mention here but not able to solve this error and also called godaddy for help, he said site are working fine on our site you check in different system.

    Now feeling hopeless and thinking to move another hosting provider… :(

    plz help me and suggest me for better option for hosting.

    Thank you.

  6. Silvia

    Hello
    i had the same problem with my website and went through all
    your advices, without solving it. At the end i contacted my host and
    they checked things for me, finding that some folders in the FTP had
    CHMOD permissions different from 775. I didn’t do anything to cause
    that, it just happened one day and i can’t get why. Anyway they fixed
    the problem for me and said it’s easily manageable with ftp clients or
    via their own file manager.
    Just hoping it may be useful :)

  7. pun

    My prob is solve, thank you for this tutorial, thank you sooo much

  8. Arun

    Hi, I’m a non-techie and a newbie… Had this issue of Internal server error last week. It all began with my admin access getting restricted. But the site was working well. Sat through this with the Hosting provider (GoDaddy) for more than 4.5 hours through the night with 3 different personnel.(This was the 3rd time over a period of 4 days or so) They were helpful to a certain extent and identified the problem (wp-admin folder was missing). They emphasized that I should have deleted it as they did not have access(Just 2 days back they changed the files for me!!). I was logging in after a periodof 7 or 8 months of setting up the site. Anyways, I asked if they could restore the folder to a previous date. They denied. The solution given was a fee of $150, where they will ”try” to find out the file changes etc, but with no guarentee. (While reading the above, I assume they should have used the above content as the questions/instructions were in the above written order).
    Anyways, from one of the discussions (forgot the site), I found that if the wp-admin folder(of the version installed) is put in, it should solve. Yes, it did work for me… I activated all my plugins(they had deactivated it) and the site was working. I also updated all the plugins and themes that i was using/trying. the site is up and running!

  9. deemyboy

    @Levent Ultanur

    One of the reason’s that some people might be getting an error with .htaccess and not with images is because they might be uploading it as a binary.

    In Filezilla (at least) you can set the transfer type in the Transfer menu tab to:
    auto
    binary
    ascii

    I’m not certain but ”auto” should usually work fine but it you’re only uploading text then maybe switch to ”ascii” for that upload session, but remember to switch back again.

    I never knew about this till yesterday when all the images on my site were being corrupted when I downloaded them to local. So I googled and found a post mentioning transfer type ”binary” for images, but when I checked I found the transfer type was set to ”ascii” (for text – I don’t know how as I don’t remember touching it!!) So I switched it to ”binary” and my images came down perfectly as before.

    The reason I say that ”auto” is fine is because I’ve up and downloaded complete sites with a mixture of images (png, jpeg, gif etc) and text files (.php, .html, .css) and never had to set each transfer type individually or set it to ”ascii” and upload only text files, then switch to binary and upload only images – Filezilla handles it all automatically…normally!

    In fact I was totally unaware of this setting and I’ve been using Filezilla for around 2 or 3 years!

    That MIGHT be the problem so get your clients to check the transfer type on their ftp application

    I hope it helps!

  10. deemyboy

    You have not emphasised STRONGLY enough in the solution which replaces the WordPress core that people should
    a) backup the wp-content folder <— this is your website (plus the wp database which doesn't come into this as it should be unnaffected by replacing the core)
    b) make sure when they replace wp-admin and wp-includes they do not grab all 3 folders (ie. do NOT include wp-content) when uploading the new core

  11. Henrique

    Thank you very much!

  12. Deepanshu Kakkar

    Thanks

  13. Basha

    Very Very Useful Article…Thank..you so much

  14. Guan

    500 internal server error after activated wordpress plugins

  15. Warix

    Thank you so much, it was problem in plugins :D

  16. Kristian Frisk

    Thanks for this post. Learned (the bitter way) how much grief a bad plugin can cause to a wordpress site.

  17. F. Parisis

    Thank you very very very much! That was the best and only place where I found solution, after a day’s search on the web.

  18. Tom Grant

    Good job-massive help!

  19. Anurag

    A Big THUMBS up to this tutorial :)

  20. Md.Zelal Hossain

    Thank you so much for the nice tutorial..!!!!

  21. Levent Ultanur

    Hey guys n girls…
    What i dont get with this error is that i CAN upload images without getting the http error but My client gets the error… Same server, same files… Why ooo why… Anybody?

  22. Kyle Hunzinger

    Thank you it was the PHP Memory Limit!

  23. Uwe

    Thank you very much! The .htaccess was the reason!

  24. Mark C.

    Hi, guys. Awesome post! I use this page every time I get an Internal Server error.

    I would offer an additional step, however. Actually, this should be the very first step before anything else is done. That is to verify there is not a problem with the web host.

    I went through all the usual steps this morning on a client’s site that went down an hour ago only to find, quite by chance, that PHP was not working on the host. A quick check of the service bulletins on the web host’s website indicated a problem had occurred with that particular server. So, all we can do is wait until they fix it. (there are other tricks like changing the A record to a different server, but that’s only if the server issue is long term.)

    That said, other parts of the server are still functioning so a quick and dirty index.html was created just so visitors see something nice instead of an error.

    It’s also handy to create a ”test.php” file that demonstrates if PHP is working or not, and then try to access that file every so often. When service is restored, delete or rename the index.html so that the index.php will load instead.

    Here is my test.php code:

    PHP Test

    <?php echo ’<p>Hello World</p>’; ?>

    I sure hope this helps someone in a similar boat. All the best.

  25. Bwana

    Thanks for your help! My site only exhibited the ”500 Internal Server Error” when I tried to see what plugins were installed. Naturally, I figured there was a misbehaving plugin. After several attempts to fix the problem by removing all of the plugins, I found your article. Your ”memory=64MB” in a clean php.ini, placed in wp-admin, did the trick. Now at least I can work with the site to determine what is hording all the RAM. Nice article!

  26. Jorge Santos Velasco

    Thank you very much!! this was very helpfull!!

  27. Lakshay Sharma

    Many thanks for this post, resoled my issue.

  28. Denise O'Reilly

    I have been locked out of logging into Wordpress for 2 weeks, as it tells me the security certificate is not verified. Can someone fix this so I can log in?

  29. WPBeginner Staff

    Sometimes server misconfiguration gets fixed and the error does not come back again. If it does then you should contact your web host.

  30. Jos

    I have seen this twice. Just reloading the page fixed it. But can something still be wrong?

  31. Matthew Newton

    Thanks a bunch guys, I suspected it was the .htaccess and this confirmed it

  32. Jessica

    I can’t even log on to my admin panel at all to try to deactivate plug-ins etc… I talked with my hosting provider and they couldn’t find any problems. Any suggestions for what to do when you can’t even get to the admin panel?

  33. Mitesh Raghwani

    Thank you so much for your help. A simple fix for what seemed a massive problem.

  34. Kailash Ghodke

    I tried All Things which described above , but not worked for me :(
    Is any other option like to install new wordpress on domain with all old posts ???

    Your Help is needed please help to fix that issue..!

  35. Lidia Lewis

    Thanks for this article! My .htaccess file was corrupt and every time I kept renaming it, another duplicate kept appearing! The site kept returning 500 error messages. What I didn’t realise was that I had to save the permalinks setting in Wordpress to update the file. Hope this fixes it for good! Thanks so much.

  36. Mark Brandson

    Thank you so very much. The .htaccess trick worked. You saved my life!

  37. Astrid

    Deactivating the plug ins worked for me after the latest WP upgrade (April/8/14). Although I think it was the WP Mobile detector that was conflicting with my W3 cache who was the culprit.
    Thanks so much you are a life saver!

    My hosting company told me that I should have had a back up (which I thought I did via a plug in) and that if I wanted to get a recovery and back up I’d have to pay $75.00 bucks. Really? I am so disappointed but super happy I found this article.

    BTW, You are my go to guys when it comes to easy to understand, step by step issues with WP, plugins and the like. We need you around– Keep up the good work. Truly appreciate your efforts.

    You guys ROCK!

    Subscribed and following :)

  38. sangeetha menon

    Hi Syed,

    I have deleted the infected files as I kept getting the 500 Internal server error. Now the host provider has asked me to upload the fresh files .. As I dont have any clue , I have asked the host providers to fix it..

    If i have to do it , when uploading to the web root should I give overwrite the existing files ?
    Should I do the htaccess file fix too ? Pls help…

  39. luka

    Just change the php verison to 5.4 or higher. It work for me:)

  40. Meg

    O.M.G. Nothing like waking up to a lost webpage. And yes, I did panic, but luckily found your post, took a deep breath and actually fixed everything with the first step: corrupt htaccess file. THANK YOU! I really do need to learn more about Wordpress.

  41. Kevin

    Thanks for the help, I was searching for quite a bit until I found your solution. I took a look at my .htaccess file and saw that it was corrupt, so I renamed it and it did the trick. Cheers :)

  42. sherly

    With your help I just fixed my 500 internal server error. I’m a total newbie so this is very helpful!! Thanks!!

  43. Derrick

    Hi Editorial Staff,

    Thank you very much!! The best 500 internal server error remedy post I’ve came across just when I needed it!!

    Thank you very much!!

  44. Nepal

    Very helpful! Thank you so much…

    I didn’t do anything by myself but I contacted my hosting provider..Lets see how long will they take to fix this issue.

  45. Anita Hunt

    Thanks so much for your help :)

  46. Keely

    Thanks wpbeginner – the .htaccess fix worked for me :)

  47. Olsi

    Deleting whole themes via File Manager and leaving only 1 theme worked for me

Lämna ett svar

Tack för att du väljer att lämna en kommentar. Tänk på att alla kommentarer modereras enligt våra policy för kommentarer, och din e-postadress kommer INTE att publiceras. Vänligen använd INTE nyckelord i namnfältet. Låt oss ha en personlig och meningsfull konversation.