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

Våra läsare ber oss ofta att hjälpa dem att lösa issues relaterade till limits för filuppladdning. Denna enkla website-inställning kan ha oväntade effekter på din site.

Till exempel kan en låg limit för filuppladdningsstorlek ibland hindra you från att ladda upp filer med media uppladdaren eller installera större WordPress plugins och themes. Detta kan vara mycket frustrerande, särskilt när du inte är säker på hur du ändrar limiten.

I den här artikeln visar vi dig hur du enkelt kan öka den maximala storleken på filuppladdare i WordPress för att fixa dessa issues.

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:

Video Tutorial

Subscribe to WPBeginner

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

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.

Vid aktivering ska du navigera till Code Snippets ” + Add Snippet. Du måste hovera musen över alternativet ”Add Your Custom Code” och sedan klicka på knappen ”Use snippet”.

Add a Custom Snippet in WPCode

På nästa vy måste du ge ditt nya snippet ett namn och ändra code type till ”PHP Snippet”.

Sedan kan du copy and paste följande code snippet 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.

Vi hoppas att den här artikeln hjälpte dig att öka den maximala storleken på filuppladdare i WordPress. Du kanske också vill se vår guide om hur man väljer den bästa website-byggaren och våra expertval av de bästa apparna för virtuella företagstelefonnummer med gratis alternativ.

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

407 kommentarerLämna ett svar

  1. Syed Balkhi says

    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. Dayo Olobayo says

    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.

  3. Ray Konopka says

    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.

    • WPBeginner Support says

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

      Administratör

  4. Mark says

    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.

    • WPBeginner Support says

      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.

      Administratör

  5. Muhammad Farooqi says

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

    • WPBeginner Support says

      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.

      Administratör

  6. Abdullah Ashraf says

    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?

    • WPBeginner Support says

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

      Administratör

    • WPBeginner Support says

      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.

      Administratör

  7. Ben says

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

    • WPBeginner Support says

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

      Administratör

    • WPBeginner Support says

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

      Administratör

  8. Ahmad says

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

    • WPBeginner Support says

      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.

      Administratör

  9. Vittorio says

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

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

    • WPBeginner Support says

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

      Administratör

  10. Oliver says

    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

    • WPBeginner Support says

      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.

      Administratör

  11. Asad says

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

    • WPBeginner Support says

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

      Administratör

  12. Chris says

    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?

    • WPBeginner Support says

      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

      Administratör

  13. Janice says

    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?

  14. Alexander Gartley says

    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.

  15. Ernesto says

    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

    • WPBeginner Support says

      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 :)

      Administratör

  16. Tamir Davidoff says

    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 !

    • WPBeginner Support says

      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 :)

      Administratör

  17. rajesh says

    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

    • WPBeginner Support says

      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.

      Administratör

  18. Adam Walsworth says

    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.

    • WPBeginner Support says

      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.

      Administratör

  19. Rafiq khan says

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

  20. Carla says

    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.

    • WPBeginner Support says

      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 :)

      Administratör

  21. rahul says

    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

  22. Ephraim says

    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

    • WPBeginner Support says

      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.

      Administratör

  23. Ivos G. says

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

    LimitRequestBody 104857600

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.