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 ökar du den maximala storleken för filuppladdning i WordPress

Har du någonsin försökt att ladda upp en fil till din WordPress-webbplats och stött på patrull? Det är superfrustrerande när du inte kan ladda upp den bild, det plugin eller det tema du behöver. Våra läsare ber oss ofta om hjälp med filuppladdningsproblem eftersom de kan få ditt arbetsflöde att krypa.

Ibland kan dessa filuppladdningsgränser oväntat hindra dig från att lägga till innehåll i ditt mediebibliotek eller installera de större plugins och teman du behöver. Det är som att vara fast med händerna bundna. Och det är ännu mer irriterande när du inte vet hur du ska fixa det!

Men oroa dig inte, vi finns här för att hjälpa till. Vi älskar att WordPress är en så konfigurerbar plattform och att det ofta finns flera sätt att lösa samma problem.

I den här guiden visar vi dig de enklaste sätten att öka den maximala filuppladdningsstorleken i WordPress. Vi tar dig förbi dessa begränsningar så att du kan återgå till att göra det du älskar – att driva din webbplats!

How to increase the maximum file upload size in WordPress

Varför öka den maximala storleken för filuppladdning i WordPress?

Din hosting provider för WordPress kommer att ange en standard för maximal storlek för upload av filer när du registrerar dig och installerar WordPress. Din hosting provider definierar denna limit, och den varierar vanligtvis från 2 MB till 500 MB.

För de flesta WordPress website ägare kommer denna limit att vara mer än tillräckligt.

Det finns dock tillfällen då du måste höja denna limit så att du inte runar in i upload errors.

Till exempel:

Med detta sagt, låt oss visa dig hur du kan öka den maximala storleken på filuppladdare på din WordPress site.

Note: Tänk på att om du displayed många stora filer på din website kan det allvarligt sakta ner dess hastighet och prestanda. Därför rekommenderar vi normalt att du aldrig uppladdar videoklipp till WordPress.

Eftersom de flesta användare har olika WordPress inställningar för webbhotell, kommer vi att täcka följande:

Så här kontrollerar du din limit för maximal storlek på filuppladdning i WordPress

WordPress visar automatiskt limiten för maximal filuppladdningsstorlek när du laddar upp images eller andra media.

För att kontrollera detta, gå bara till Media ” Add New i din WordPress adminpanel, och du kommer att se den maximala filuppladdningsstorlekslimiten för din WordPress site.

Check current file upload size limit

Nu när du vet hur du hittar storlekslimiten ska vi visa dig hur du ökar den maximala storleken för upload i WordPress.

Metod 1: Kontakta din hosting provider för WordPress

Ett av de enklaste sätten att öka den maximala storleken för upload av filer i WordPress är att kontakta din WordPress hosting provider.

Detta är en relativt enkel uppgift för deras kundtjänst och kan göras på ett par minuter.

För Beginner kan detta vara mycket enklare än att lägga till kod i WordPress och editera server-filer.

Helt enkelt head över till din hosting providers website, gillar Bluehost, och logga in.

Klicka sedan på ikonen “Chatt” längst ner på vyn. Du kan sedan be de anställda på supporten att öka storleken på filuppladdningen på din site i WordPress.

Clicking the Bluehost live chat support button in the dashboard

You can also reach out to support from inside your hosting account dashboard.

Metod 2: Skapa eller edit en befintlig php.ini-fil

Ett annat sätt att öka den maximala storleken på filuppladdningen är att skapa eller editera en fil som heter php.ini. Denna fil kontrollerar många settings för ditt WordPress webbhotell.

De flesta hosting providers för WordPress gillar Bluehost och har en nybörjarvänlig cPanel som hjälper dig att hantera din website.

Om din server har en cPanel dashboard kan du öka storleken på upload av filer med hjälp av de inbyggda tools.

Note: Följarna är från Bluehost cPanel. De flesta shared hosting providers kommer dock att ha liknande steg.

Du hittar en cPanel-knapp längst ner på tabben Webbhotell i Bluehost.

Open cPanel in Bluehost

Om du klickar på den här knappen öppnas din cPanel dashboard.

Nu måste du rulla ner till Software section och klicka på “MultiPHP INI Editor”.

MuliPHP INI Editor in Bluehost's cPanel

Därefter rullar du ner till sektionen märkt “upload_max_filesize” och enter en new maximal filstorlek i boxen.

Klicka sedan på knappen “Tillämpa”.

Upload Max Filesize Setting

Alternativt kan du clicka på menu tabs “Editor Mode”, och då kan du ändra den maximala storleken för uppladdare direkt i editorn.

You need to edit the ‘upload_max_filesize’ section to increase your file upload size.

När du är slutförd klickar du bara på knappen “Save”.

Change max upload filesize in code editor

Edit php.ini genom att lägga till kod

Om din nuvarande hosting provider inte erbjuder alternativet cPanel, måste du editera den här filen manuellt.

För att göra detta kan du använda en FTP-klient eller alternativet filhanterare i kontrollpanelen på ditt WordPress webbhotell.

Om du använder ett delat webbhotell kanske du ej ser php.ini-filen i din directory. Om du inte ser någon, skapar du helt enkelt en fil med namnet php.ini och uploadar den till din root folder.

Add sedan följande code snippet till filen:

upload_max_filesize = 256M
post_max_size = 256M
max_execution_time = 300

Du kan ändra limiten “256M” till den filstorlek som du behöver för din WordPress blogg.

Metod 3: Add Code to Your WordPress Theme functions.php File

Denna metod innebär att du lägger till kod i din functions.php-fil i ditt WordPress theme.

Istället för att editera filen direkt rekommenderar vi att du använder WPCode. Det är det bästa code snippets plugin som allow you to add code to your website without breaking it.

Om du inte har gjort det tidigare kan du läsa vår guide för nybörjare om hur du lägger till customize-kod i WordPress.

Först måste du installera det gratis pluginet WPCode. För mer detaljer, se vår Step-by-Step guide om hur du installerar ett WordPress plugin.

Efter aktivering ska du navigera till Code Snippets ” + Add Snippet.

Du måste hålla muspekaren över alternativet “Add Your Custom Code (New Snippet)” och sedan klicka på knappen “+ Add Custom Snippet”.

Add new snippet

Därefter måste du välja “PHP Snippet” som kodtyp från listan med alternativ som visas.

Select the PHP snippet option

På följande skärm anger du ett namn för din nya snippet, som kan vara vad som helst för att hjälpa dig att komma ihåg vad koden är till för.

Sedan kan du kopiera och klistra in följande kodsnutt under “Code Preview”. Se till att du ändrar “256M” till den maximala filstorlek du behöver:

@ini_set( 'upload_max_size' , '256M' );
@ini_set( 'post_max_size', '256M');
@ini_set( 'max_execution_time', '300' );
Save Your Custom Snippet in WPCode

Till sist togglar du högst upp till “Active” och klickar sedan på knappen “Save Snippet”. Koden kommer nu att köras på din website.

Metod 4: Add Code till din .htaccess-fil

Ett annat sätt att öka den maximala filstorleken är att ändra .htaccess-filen. Denna fil kontrollerar konfigurationsinställningarna på hög nivå för din website.

För att göra detta måste du logga in på din website server via FTP. Om du inte har gjort det tidigare kan du läsa vår guide för nybörjare om hur man använder FTP för att uploada filer till WordPress.

Efter det måste du lokalisera din .htaccess-fil i din websites root folder.

Open .htaccess file

Om du inte kan hitta din .htaccess-fil kan den vara dold av din filhanterare eller FTP-klient. För att lära dig mer, se vår guide om varför du inte kan hitta .htaccess-filen på din WordPress site.

Följer du detta måste du add to följande code snippet till din .htaccess fil:

php_value upload_max_filesize 256M
php_value post_max_size 256M
php_value max_execution_time 300
php_value max_input_time 300

Om du vill öka storleken på din maximala upload av filer ännu mer ändrar du bara “64M” till den storlek som du behöver.

Metod 5: Använd ett tillägg till WordPress för att öka storleken på filuppladdningen

Ett annat sätt du kan öka limiten för maximal upload av filer är genom att använda WP Increase Upload Filesize plugin. Om du inte är bekväm med att lägga till kod i WordPress, kan detta vara ett bra alternativ för dig.

Det första du behöver göra är att installera och aktivera pluginet. För mer detaljer, se vår guide om hur du installerar ett plugin för WordPress.

Efter aktivering, navigera till Media ” Increase Upload Limit i din WordPress adminpanel.

Detta leder dig till en vy där du kan selecta en new storlek för upload i rullgardinsmenyn “Choose Maximum Upload File Size”.

Klicka sedan på knappen “Save Changes”.

Increase file upload size with plugin

Note: Den maximala storleken för upload av filer ställs in av din hosting provider. Om du behöver en filstorleksgräns som är större än den som anges i rullgardinsmenyn måste du kontakta din hosting provider och be att få öka limiten.

Video Tutorial

Om du inte tycker om att följa skriftliga instruktioner kan du istället titta på vår videohandledning:

Subscribe to WPBeginner

Vi hoppas att den här artikeln hjälpte dig att öka den maximala filuppladdningsstorleken i WordPress. Du kanske också vill se vår guide om hur du lägger till ytterligare filtyper som kan laddas upp i WordPress och våra expertval av plugins och tips för att förbättra WordPress adminområde.

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.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

406 kommentarerLeave a Reply

  1. Thanks for showing how to check the default limit. Just checked mine now and saw it’s 1GB. I think that’s good enough for me so I won’t be touching anything. I must also add that the wpcode method would have been my preferred method if I needed to change anything.

  2. Thanks for the tips. My site is hosted in BlueHost so I first tried Method 2. However, after changing the upload_max_filesize value, the Add New media page for my site still showed 64 MB. I went back into the MultiPHP INI Editor and looked at the other values. One other value stood out:
    post_max_size
    Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. Generally speaking, memory_limit should be larger than post_max_size.

    After I increased the post_max_size value as well, then the Add New media upload page showed the new limit. Perhaps you can update the post to include this tip.

    • Thank you for sharing this, we’ll be sure to look into it and possibly add it to the article in the future :)

      Admin

  3. All my limits were increased as suggested, but I started getting ‘files are too big’ after a plugin update. After double checking everything server and email side, the solution was changing from 5M to 5120kb in Contact Form 7 settings. The plugin suddenly stopped recognizing M when trying to override the default 1024kb setting.

    • It would depend on your host and what else is set up on your server for what will work. If nothing else works you can always reach out to your host for assistance.

      Admin

  4. You comments and thanks secion is almost 10 times longer..than the content of this page is guarantee of your amazing tips

    • If the recommendations are not working for you, we would recommend reaching out to your hosting provider and they should be able to assist if this is something they’ve set on their end.

      Admin

  5. Thank you so much. I tried all the methods and the last method was helpful for me.
    I would like to know should I undo the second last step that was php.ini?

    • It is not required to remove that file but you can remove it if it is not working for your server.

      Admin

    • If none of our recommendations work, we would recommend reaching out to your hosting provider to see if it is a restriction that they have set on their servers.

      Admin

  6. If you have access to the FTP, can I just upload the file in the wp-content/uploads/[year]/[month] folder?

    • It would depend on the method you are using but it could help with restoring a backup that large.

      Admin

    • If none of the recommendations worked we would recommend reaching out to your hosting provider for assistance.

      Admin

  7. I tried this but the size did not change… status is same please help what should I do know I am using localhost

    • You would want to try restarting your localhost service just in case, otherwise, you would want to ensure you added/editied the php.ini correctly for the most common reason.

      Admin

  8. I think
    @ini_set( ‘upload_max_size’ , ’64M’ );

    should be
    @ini_set( ‘upload_max_filesize’ , ’64M’ );

    • upload_max_size currently increases that value as well as a few other things which is why we don’t use upload_max_filesize

      Admin

  9. IT WORKS!!! THANKS

    I made a file ini.php then uploaded it, then renamed it from ini.php.txt to ini.php and it worked.

    thanks

    • If our recommendations do not work you would want to reach out to your hosting provider to ensure they do not have it as part of their settings.

      Admin

  10. How can i increase the upload limit while i have the wordpress hosting also functions.php isn’t updating

    • If the file will not update, you would want to reach out to your hosting provider and they should be able to assist

      Admin

  11. I want to increase the limit to 250mb but i dont know if this exposes my site to security treats, though am only using gravity form and I have also set to disable php execution on my upload folder. And have allowed only jpg, and mp3 files.
    Please do you think this may affect my site load times as huge upload is coming from several users?

    • If multiple users attempt uploads at the same time it can have an effect on your site’s load time but it shouldn’t open you to security threats

      Admin

  12. Nice article, but I tried adding your 3 lines of code to the functions.php file, but got an “unknown @ rule” error. What’s that all about?

  13. Thanks, this helped me troubleshoot an upload limit. I’m on a WordPress multisite network install, so it ended up being a setting in the Network Admin Settings.

    I was confused at first, because my php settings were allowing larger uploads, but it was restricted in the Network Settings.

  14. Would have been great if you have included the .user.ini method.

    .user.ini uploaded in the root folder with the same value/text in your edited php.ini

    Most of the time, only this method works for shared hosting.

    ErnestPH

    • The php.ini file should work the same as the user.ini file unless your specific host ignores the php.ini but thank you for sharing your recommendation :)

      Admin

  15. Not working for me.
    I have followed this guide and double checked the php.ini file to make sure that the changed are in fact saved. changed htaccess file to increase limits. and also tried modifying the phpMyAdmin httpd-app.conf and php-settings.conf file. All of these files reflect max upload higher than 40m and my WP site does not reflect Any of these changes. Really frustrated here.

    Please help me, thanks !

    • If you haven’t already, you would want to reach out to your hosting provider to ensure there is not a setting on their end that is overriding what you are setting :)

      Admin

  16. i have tried all 3 method none of them worked. i am trying to upload newspaper theme in my in my wordpress site. but every time it show that php.ini file upload max file size.
    plz help me

    • You would want to reach out to your hosting provider to ensure they don’t have a setting that is overriding the changes you made.

      Admin

  17. Watchout for hidden php.ini files. In my setup I found 2 of them. The one which I found actually resolved the issue was found under

    ./etc/php/7.0/apache2/php.ini

    modifying this file fixed my issue.

    • Thanks for sharing your solution, with where that file is located we would recommend most users reach out to their hosting provider before looking in locations like that.

      Admin

  18. Thanks buddy i have solved my problem by adopting method 2 by editing my php.ini file
    Thanks alot you are working great

  19. None of the above worked for me. A matter of fact, editing the htaccess file broke my site even after deleting the above code. Overwriting with a new file fixed the problem though.

    I have a dedicated server on Bluehost. What worked for me was going in the WHM root, not cpanel nor FTP access. Search for MultiPHP INI Editor. Give it at least 5 minutes to load if you only see the title and icon. You can set you upload time, post size, etc. there. Works instantly, even if your site is using Cloudflare, without placing it in development mode or clearing the cache. I hope this helps someone.

    • Thank you for sharing what worked for you, should other users be on a dedicated server, if they reach out and let BlueHost know the need to increase the upload size then BlueHost can normally edit that for them :)

      Admin

  20. when i tried this
    Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.
    this happened to me
    whats the solution of this

  21. I had been trying php.ini method but it never works please how will I set it..
    Or you should please tell me the were to paste at function.php

    • You would normally use a text editor to set the content in the php.ini file. For your functions.php it should go at the end normally so it can be removed later as needed. You may also want to check with your hosting provider if you are having trouble with these methods for if they can assist in increasing the file size for you.

      Admin

  22. None worked for me. But this one fixed it – add to your .htaccess this line:

    LimitRequestBody 104857600

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.