Nuestros lectores nos piden a menudo que les ayudemos a resolver problemas relacionados con las limitaciones de subida de archivos. Este sencillo ajuste del sitio web puede tener efectos inesperados en su sitio.
Por ejemplo, a veces un límite bajo de tamaño de archivos subidos puede impedirte subir archivos con el cargador de medios o instalar plugins y temas de WordPress más grandes. Esto puede ser muy frustrante, especialmente cuando no estás seguro de cómo cambiar el límite.
En este artículo, le mostraremos cómo aumentar fácilmente el tamaño máximo de subida de archivos en WordPress para corregir esos problemas.
¿Por qué aumentar el tamaño máximo de subida de archivos en WordPress?
Tu proveedor de alojamiento de WordPress establecerá por defecto un tamaño máximo de subida de archivos cuando accedas e instales WordPress. Tu proveedor de alojamiento define este límite, que suele oscilar entre 2 MB y 500 MB.
Para la mayoría de los propietarios de sitios web en WordPress, este límite será más que suficiente.
Sin embargo, hay ocasiones en las que necesitará aumentar este límite para no encontrarse con errores de subida.
Por ejemplo:
- Tienes un sitio web de fotografía y necesitas subir imágenes grandes.
- Su porfolio de diseño o fotografía tiene imágenes grandes.
- Quieres instalar un tema o plugin de WordPress más grande.
- Quieres vender productos digitales como libros electrónicos, fotos, vídeos, etc.
- Actualiza regularmente el contenido y añade audio, fotos y mucho más.
Dicho esto, vamos a mostrarle cómo puede aumentar el tamaño máximo de subida de archivos en su sitio WordPress.
Nota: Ten en cuenta que mostrar muchos archivos grandes en tu sitio web puede ralentizar seriamente su velocidad y rendimiento. Por eso, normalmente recomendamos no subir nunca vídeos a WordPress.
Dado que la mayoría de los usuarios tienen diferentes configuraciones de alojamiento de WordPress, cubriremos lo siguiente:
- How to Check Your Maximum File Upload Size Limit in WordPress
- Method 1: Contact Your WordPress Hosting Provider
- Method 2: Create or Edit an Existing php.ini file
- Method 3: Add Code to Your WordPress Theme functions.php File
- Method 4: Add Code to Your .htaccess File
- Method 5: Use a WordPress Plugin to Increase File Upload Size
Tutorial en vídeo
Si prefiere instrucciones escritas, siga leyendo.
Cómo comprobar el límite de tamaño máximo de subida de archivos en WordPress
WordPress mostrará automáticamente el límite de tamaño máximo de subida de archivos cuando esté subiendo imágenes u otros medios.
Para comprobarlo, simplemente vaya a Medios ” Añadir nuevo en su panel de administrador de WordPress, y verá el límite de tamaño máximo de subida de archivos para su sitio WordPress.
Ahora que ya sabe cómo encontrar el límite de tamaño, vamos a mostrarle cómo aumentar el tamaño máximo de subida en WordPress.
Método 1: Póngase en contacto con su proveedor de alojamiento de WordPress
Una de las formas más sencillas de aumentar el tamaño máximo de subida de archivos en WordPress es ponerse en contacto con su proveedor de alojamiento de WordPress.
Se trata de una tarea relativamente sencilla para su equipo de atención al cliente y puede realizarse en un par de minutos.
Para los principiantes, esto puede ser mucho más fácil que añadir código a WordPress y editar los archivos del servidor.
Sólo tienes que ir al sitio web de tu proveedor de alojamiento, como Bluehost, y acceder.
A continuación, haga clic en el icono “Chat” situado en la parte inferior de la pantalla. A continuación, puede solicitar al personal de soporte que aumente el tamaño de subida de archivos en su sitio de WordPress.
También puede contactar con el soporte desde el Escritorio de su cuenta de alojamiento.
Método 2: Crear o editar un archivo php.ini existente
Otra forma de aumentar el tamaño máximo de subida de archivos es creando o editando un archivo llamado php.ini. Este archivo controla una gran cantidad de ajustes para su entorno de alojamiento de WordPress.
La mayoría de los proveedores de alojamiento de WordPress, como Bluehost, disponen de un cPanel fácil de usar que te ayudará a gestionar tu sitio web.
Si tu alojamiento web tiene un Escritorio cPanel, entonces puedes aumentar el tamaño de subida de archivos a través de las herramientas integradas.
Nota: Lo siguiente es del cPanel de Bluehost. Sin embargo, la mayoría de los proveedores de alojamiento compartido tendrán pasos similares.
Encontrará un botón cPanel en la parte inferior de la pestaña Alojamiento en Bluehost.
Al hacer clic en este botón se abrirá su Escritorio de cPanel.
Ahora tienes que desplazarte hasta la sección Software y hacer clic en ‘MultiPHP INI Editor’.
A continuación, desplácese hasta la sección “upload_max_filesize” e introduzca un nuevo tamaño máximo de archivo en la casilla.
A continuación, haga clic en el botón “Aplicar”.
También puede hacer clic en la pestaña del menú “Modo editor” y, a continuación, modificar el tamaño máximo de subida de archivos directamente en el editor.
Tienes que editar la sección ‘upload_max_filesize’ para aumentar el tamaño de subida de tus archivos.
Cuando hayas terminado, sólo tienes que hacer clic en el botón “Guardar”.
Editar php.ini añadiendo código
Si su proveedor de alojamiento actual no ofrece la opción de cPanel, tendrá que editar este archivo manualmente.
Para ello, puede utilizar un cliente FTP o la opción de gestión de archivos de su panel de control de alojamiento de WordPress.
Si utiliza alojamiento compartido, es posible que no vea el archivo php.ini en el directorio de su alojamiento. Si no lo ves, simplemente crea un archivo llamado php.ini y súbelo a tu carpeta raíz.
A continuación, añada el siguiente fragmento de código al archivo:
upload_max_filesize = 256M
post_max_size = 256M
max_execution_time = 300
Puedes modificar el límite de ‘256M’ al tamaño de archivo que necesites para tu blog de WordPress.
Método 3: Añadir código al archivo functions.php de su tema de WordPress
Este método consiste en añadir código al archivo functions. php de su tema de WordPress.
En lugar de editar el archivo directamente, recomendamos usar WPCode. Es el mejor plugin de fragmentos de código que te permite añadir código a tu sitio web sin romperlo.
Si no lo ha hecho antes, consulte nuestra guía para principiantes sobre cómo añadir código personalizado en WordPress.
En primer lugar, debe instalar el plugin gratuito WPCode. Para más detalles, consulta nuestra guía paso a paso sobre cómo instalar un plugin de WordPress.
Una vez activado, deberá ir a Fragmentos de código ” + Añadir fragmento. Deberá pasar el cursor por encima de la opción “Añadir su código personalizado” y, a continuación, hacer clic en el botón “Usar fragmento”.
En la siguiente pantalla, debe dar un nombre a su nuevo fragmento de código y cambiar el tipo de código a “Fragmento PHP”.
A continuación, puede copiar y pegar el siguiente fragmento de código en ‘Vista previa del código’. Asegúrate de cambiar ‘256M’ por el tamaño máximo de archivo que necesites:
@ini_set( 'upload_max_size' , '256M' );
@ini_set( 'post_max_size', '256M');
@ini_set( 'max_execution_time', '300' );
Por último, cambie el conmutador de la parte superior a “Activo” y, a continuación, haga clic en el botón “Guardar fragmento de código”. El código se ejecutará en su sitio web.
Método 4: Añadir código a su archivo .htaccess
Otra forma de aumentar el tamaño máximo de archivo es modificando el archivo .htaccess. Este archivo controla los ajustes de configuración de alto nivel de su sitio web.
Para ello, debe acceder al servidor de su sitio web a través de FTP. Si no ha hecho esto antes, consulte nuestra guía sobre cómo usar FTP para subir archivos a WordPress para principiantes.
A continuación, localice el archivo .htaccess en la carpeta raíz de su sitio web.
Si no puedes encontrar tu archivo .htaccess, entonces podría estar oculto por tu gestor de archivos o cliente FTP. Para obtener más información, consulte nuestra guía sobre por qué no puede encontrar el archivo .htaccess en su sitio de WordPress.
A continuación, debe añadir el siguiente fragmento de código a su archivo .htaccess:
php_value upload_max_filesize 256M
php_value post_max_size 256M
php_value max_execution_time 300
php_value max_input_time 300
Para aumentar aún más el tamaño máximo de subida de archivos, sólo tiene que cambiar ’64M’ por el tamaño que necesite.
Método 5: Utilizar un plugin de WordPress para aumentar el tamaño de la subida de archivos
Otra forma de aumentar el límite máximo de subida de archivos es usando el plugin WP Increase Upload Filesize. Si no te sientes cómodo añadiendo código a WordPress, entonces esta podría ser una buena opción para ti.
Lo primero que tienes que hacer es instalar y activar el plugin. Para más detalles, consulte nuestra guía sobre cómo instalar un plugin de WordPress.
Una vez activado, vaya a Medios ” Aumentar límite de subida en su panel de administrador de WordPress.
Esto le lleva a una pantalla en la que puede seleccionar un nuevo tamaño de archivo subido en el desplegable “Elegir tamaño máximo de archivo subido”.
A continuación, haz clic en el botón “Guardar cambios”.
Nota: El tamaño máximo de subida de archivos lo establece tu proveedor de alojamiento. Si necesita un límite de tamaño de archivo superior al que aparece en el desplegable, deberá ponerse en contacto con su proveedor de alojamiento y solicitar un aumento del límite.
Esperamos que este artículo te haya ayudado a aumentar el tamaño máximo de subida de archivos en WordPress. Puede que también quieras ver nuestra guía práctica sobre cómo elegir el mejor maquetador de sitios web y nuestra selección experta de las mejores aplicaciones de números de teléfono virtuales para empresas con opciones gratuitas.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
Lisha Van Nieuwenhove
This help was BRILLIANT. THANK YOU!
WPBeginner Support
You’re welcome!
Administrador
Ray Konopka
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
Thank you for sharing this, we’ll be sure to look into it and possibly add it to the article in the future
Administrador
Mark
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
Thanks for sharing this should someone else run into this issue!
Administrador
devshah
Function.php method is not Working.
WPBeginner Support
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.
Administrador
Halil AHMAD
The .htaccess worked for me. Thank you
Muzoora Barnabas
The .htaccess worked for me. Thank you
WPBeginner Support
Glad our recommendation was able to assist
Administrador
Muhammad Farooqi
You comments and thanks secion is almost 10 times longer..than the content of this page is guarantee of your amazing tips
WPBeginner Support
We’re happy we can help so many WordPress users
Administrador
Jacob Alas
The only method that worked for me was: htaccess Method
Thank you.
WPBeginner Support
Glad one of our methods was able to work for you
Administrador
Daniyar Nauryz
htaccess Method has worked for me.
WPBeginner Support
Glad our recommendation worked for you
Administrador
furqan
its not working.
WPBeginner Support
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.
Administrador
Abdullah Ashraf
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
It is not required to remove that file but you can remove it if it is not working for your server.
Administrador
Bradley
None work.
WPBeginner Support
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.
Administrador
Ben
If you have access to the FTP, can I just upload the file in the wp-content/uploads/[year]/[month] folder?
WPBeginner Support
If you do that you would need a plugin to find the images, we have a guide on how to do that below:
https://www.wpbeginner.com/plugins/how-to-bulk-upload-wordpress-media-files-using-ftp/
Administrador
naved ahmed
Thanks a lot
.htaccess method worked for me.
You saved my lot of time.
Thanks again.
WPBeginner Support
Glad our guide was able to help you
Administrador
Adio Usman
Does this method works for restoring backup that is up to 3.5gb manually?
WPBeginner Support
It would depend on the method you are using but it could help with restoring a backup that large.
Administrador
viren
method 3 is perfectly worked for me.keep inspiring us.great work man.thnks
WPBeginner Support
Glad our recommendation was helpful
Administrador
ayman
.htaccess methode worked with me
WPBeginner Support
Glad our recommendation was helpful
Administrador
Sanchit Setia
Does this work on free hosting?
WPBeginner Support
You would want to check with your hosting provider if you are concerned
Administrador
bara
It works for me
WPBeginner Support
Glad our recommendation helped you
Administrador
abc
nothing is working for lms
WPBeginner Support
If none of the recommendations worked we would recommend reaching out to your hosting provider for assistance.
Administrador
Ahmad
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
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.
Administrador
Vittorio
I think
@ini_set( ‘upload_max_size’ , ’64M’ );
should be
@ini_set( ‘upload_max_filesize’ , ’64M’ );
WPBeginner Support
upload_max_size currently increases that value as well as a few other things which is why we don’t use upload_max_filesize
Administrador
MFoale
Thank you. The 3rd method worked for me. Very useful post and video.
WPBeginner Support
You’re welcome, glad we were able to help
Administrador
Masud Rana
Wow !its work. Thanks
WPBeginner Support
Glad our guide could help you
Administrador
Oliver
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
You’re welcome, glad our guide was able to help
Administrador
Brad
None of these works
WPBeginner Support
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.
Administrador
Arivazhagan
Method 2 worked for me thanks a lot ive been struggling with this for two days …
WPBeginner Support
You’re welcome, glad our recommended solution was able to help you
Administrador
Sujan Chakraborty
you are great.I fix my problem by reading you post.Tnx
WPBeginner Support
Glad our article could be helpful
Administrador
Krakawid
Method 3 worked
WPBeginner Support
Glad our recommendation worked for you
Administrador
Tung
Method 1 worked wonders for me. Thanks a bunch!
WPBeginner Support
You’re welcome, glad our recommendation worked for you
Administrador
Trasadu
Thanks Method 3 really worked for me.
WPBeginner Support
Glad our recommendation was helpful
Administrador
Asad
How can i increase the upload limit while i have the wordpress hosting also functions.php isn’t updating
WPBeginner Support
If the file will not update, you would want to reach out to your hosting provider and they should be able to assist
Administrador
Chris
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
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
Administrador
Vinod
Thanks a lot!!! Method 3 worked for me
WPBeginner Support
Glad our recommendation worked for you
Administrador
Janice
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?
WPBeginner Support
It would depend on the entire error but it could have been a hiccup with how the code was inserted, you may want to take a look at our guide here: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/
Administrador