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

Corrección: Error de memoria agotada de WordPress – Aumentar la memoria PHP

Nota editorial: Ganamos una comisión de los enlaces de socios en WPBeginner. Las comisiones no afectan a las opiniones o evaluaciones de nuestros editores. Más información sobre Proceso editorial.

¿Ves un mensaje de error de tamaño de memoria permitido agotado en WordPress?

Este es uno de los errores más comunes de WordPress, y puedes corregirlo fácilmente aumentando el límite de memoria PHP en WordPress.

En este artículo, le mostraremos cómo corregir el error de memoria agotada de WordPress aumentando el límite de memoria PHP.

Fix: WordPress Memory Exhausted Error – Increase PHP Memory

¿Qué es el error de memoria agotada de WordPress?

El error de memoria agotada de WordPress es un mensaje que puede aparecer si su sitio web tiene problemas para realizar tareas.

WordPress utiliza PHP, un lenguaje de programación del lado del servidor que necesita memoria para funcionar.

Al igual que cualquier otro ordenador, los servidores web disponen de una cantidad limitada de memoria para ejecutar varias aplicaciones al mismo tiempo. Los proveedores de alojamiento de WordPress asignan tamaños de memoria específicos a diferentes aplicaciones, incluido PHP.

Cuando su código WordPress requiera más memoria que la asignada por defecto, verá este mensaje de error:

Error fatal: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx

Memory exhausted error displayed on a WordPress site

Es posible que su sitio WordPress esté agotando la memoria de su servidor:

  • Muchas imágenes, vídeos y otros tipos de medios
  • Muchos plugins de WordPress sin usar
  • Se le han quedado pequeños los recursos de su plan de alojamiento

Por defecto, WordPress intenta automáticamente aumentar el límite de memoria PHP si es inferior a 64MB. Sin embargo, 64MB no suele ser suficiente.

Dicho esto, veamos cómo aumentar fácilmente el límite de memoria PHP en WordPress para evitar el error de memoria agotada.

Puedes utilizar los enlaces rápidos que aparecen a continuación para navegar por el tutorial:

Nota: Algunos de estos métodos requieren que edite directamente sus archivos de WordPress. Le sugerimos que primero haga una copia de seguridad de su sitio web para evitar que aparezcan más errores en su sitio web.

Opción 1: Editar el archivo wp-config.php

En primer lugar, debe editar el archivo wp-config.php en su sitio de WordPress. Se trata de uno de los archivos principales de WordPress situado en el directorio raíz, normalmente denominado public_html.

Tendrás que utilizar un cliente FTP como FileZilla o el gestor de archivos de tu panel de control de alojamiento web.

A continuación, tienes que pegar la siguiente línea en el archivo wp-config.php justo antes de la que dice, ¡Eso es todo, deja de editar! Feliz blog.

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

Este código le dice a WordPress que aumente el límite de memoria PHP a 256MB.

Para más detalles, consulte nuestra guía paso a paso sobre cómo encontrar y editar el archivo wp-config.php.

Una vez que haya terminado, debe guardar los cambios y volver a subir el archivo wp-config.php a su servidor.

Ahora puede visitar su sitio WordPress y el error de memoria agotada debería haber desaparecido.

Opción 2: Editar el archivo .htaccess

El siguiente método consiste en editar el archivo .htaccess. Este archivo también se encuentra en la carpeta raíz del sitio web de WordPress.

Aquí, necesitas pegar el siguiente código antes de la línea que dice #END WORDPRESS.

php_value memory_limit 256M

Similar al código anterior, le dirá a WordPress que aumente el límite de memoria PHP a 256MB.p

Después, simplemente guarde los cambios y vuelva a subir el archivo a su servidor web. Ahora puede abrir su sitio web WordPress de nuevo para ver si el error de límite de memoria ha desaparecido.

Si no encuentra el archivo .htaccess, consulte nuestra guía sobre por qué puede faltar el archivo .htaccess y cómo encontrarlo.

Opción 3: Comprobación del archivo php.ini

Si los métodos anteriores no funcionan, es posible que desee echar un vistazo a su archivo php.ini.

php.ini es un archivo que controla tu configuración PHP, incluyendo la versión PHP y los scripts PHP. No es un archivo del núcleo de WordPress, ya que normalmente lo gestiona tu proveedor de alojamiento.

Puede marcar / comprobar su código para ver su límite de uso de memoria PHP. Para más detalles, puede consultar nuestra guía sobre cómo encontrar y editar el archivo php.ini.

Sin embargo, dado que se trata de un método avanzado, le recomendamos que se ponga en contacto con el equipo de soporte de su proveedor de alojamiento web para ver si pueden aumentar el límite de memoria de WordPress manualmente. De lo contrario, podrían producirse más errores.

Puede leer nuestra guía sobre cómo solicitar correctamente asistencia de WordPress para obtener más información.

Opción 4: Actualizar el alojamiento de WordPress

Si se encuentra constantemente con el error de memoria agotada, podría ser una señal de que su sitio web ha superado su plan de alojamiento actual.

A medida que su sitio web atrae más visitantes y añade más contenido, requiere más recursos para funcionar sin problemas. Actualizar a un plan con una mayor asignación de memoria puede ser una solución permanente.

Considere la posibilidad de actualizar su alojamiento de WordPress si:

  • Has probado las soluciones anteriores y el error persiste.
  • Su sitio web ha crecido significativamente en tráfico o contenido.
  • Tiene previsto añadir características o funcionalidades que requieren más recursos.

Bluehost ofrece planes de alojamiento para WordPress asequibles y fiables que se adaptan a las necesidades de su sitio web. Ofrecen una plataforma fácil de usar optimizada específicamente para WordPress, lo que facilita la gestión de tu sitio web.

Si utiliza nuestro Bluehost código de cupón, entonces usted puede conseguir hasta un 61% de descuento en su primera compra. Simplemente haga clic en el botón de abajo para conseguirlo:

Bluehost offer for WPBeginner readers

Cómo evitar agotar la memoria de WordPress

Ahora que ha solucionado el error de memoria agotada de WordPress, aquí tiene algunos pasos proactivos para evitar que vuelva a ocurrir:

Esperamos que este artículo te haya ayudado a solucionar el error de memoria agotada de WordPress aumentando el límite de memoria PHP. Puede que también quieras ver nuestra guía paso a paso para principiantes sobre cómo solucionar errores de WordPress y nuestras selecciones de expertos sobre los mejores plugins de WordPress para hacer crecer tu sitio.

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.

Descargo: Nuestro contenido está apoyado por los lectores. Esto significa que si hace clic en algunos de nuestros enlaces, podemos ganar una comisión. Vea cómo se financia WPBeginner , por qué es importante, y cómo puede apoyarnos. Aquí está nuestro proceso editorial .

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.

El último kit de herramientas de WordPress

Obtenga acceso GRATUITO a nuestro kit de herramientas - una colección de productos y recursos relacionados con WordPress que todo profesional debería tener!

Reader Interactions

464 comentariosDeja una respuesta

  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. mohadese esmaeeli says

    With your permission, I’d like to add a note for users to the article:
    Please note that htaccess is a hidden file. First, check if it exists. In case you couldn’t find the .htaccess file in your hosting, you can create one using text editor programs like Notepad. Simply create a file named htaccess. Alternatively, in the public_html directory, click on “New File” and create a file with the same name.

  3. mohadese esmaeeli says

    I have encountered this issue multiple times, and it seems to be one of the most common problems in the WordPress domain. Each time, I either contacted the hosting support or edited the htaccess file to resolve the issue. The htaccess file appears to be like a magic solution, and whenever an issue arises, it can be quickly reviewed and fixed.

  4. Mrteesurez says

    I used to encounter some errors like this on my websites but I didn’t know what to do. Something when I tried to solve it, I just uninstall the step and re-install it back and upload the backup.
    I noticed the problems still persist, when I enable wp debug mode, t then see the exact errors and the it’s source.
    I later find this guide and implented it and it works.

    Thanks.

  5. karma tsheten says

    AFter updating my .htaccess it gives me this error:

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.

  6. Jiří Vaněk says

    Regarding the .htaccess file, be cautious. Many shared web hosting providers may have directives for increasing the memory limit disabled. Such a directive in the .htaccess file can cause a 500 error on the website, requiring its removal or commenting out. Be careful with this. Sometimes, simply increasing the memory limit may not solve the problem but rather delay it, like a painkiller. The pain might subside, but it doesn’t mean the cause has been resolved. Therefore, while increasing the memory limit might seem like a solution, it’s also important to check what is consuming the memory. Sometimes, people increase the memory limit from 512 MB to 1024 MB without considering whether it’s necessary, and whether the memory limit isn’t masking an underlying issue on the website.

    • WPBeginner Support says

      Thank you for sharing your feedback on the htaccess change. Unless the host has very strict rules in place adding to the htaccess shouldn’t cause an error it is more likely to not work and would require you reach out to the host to request an override.

      Administrador

  7. Aisha says

    It doesn’t solve my problem still shows an error after placing the code “define( ‘WP_MEMORY_LIMIT’, ‘256M’ );” and I also change the size of Memory_limit of Php.ini file

    • WPBeginner Support says

      As we state in the article, if our code does not work, there is a good chance your hosting provider is overriding the memory limit and you would need to reach out to your host to fix the error.

      Administrador

  8. Sohaib Siddiq says

    It doesn’t solve my problem still shows an error after placing the code “define( ‘WP_MEMORY_LIMIT’, ‘256M’ );” & this is my front-end page showing

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 8192 bytes) in /home/X/wp-includes/class-wp-dependencies.php on line 260

    • WPBeginner Support says

      If the code does not work for you, we recommend reaching out to your hosting provider as they may have a limit set on their end that could be the root of the issue.

      Administrador

  9. Ifedayo says

    Thank you, this was helpful! All problem has been solved by carefully following this step-by-step instructions. Keep up the good work :)

  10. Doy says

    Hi,

    Thank you for this awesome website. I got this in the error log after adding this code.
    [26-Apr-2022 02:45:31 UTC] PHP Warning: Use of undefined constant ‘WP_MEMORY_LIMIT’ – assumed ‘‘WP_MEMORY_LIMIT’’ (this will throw an Error in a future version of PHP) in /wp-config.php on line x

    Is this a problem? Should I remove the code?

    • WPBeginner Support says

      That would only be an error for future versions of PHP. This solution should only be a temporary fix and your hosting provider should be able to assist with the root cause of the issue.

      Administrador

  11. Alison Taylor says

    Thank you! You folks rock. This solved my problem. WPBeginner is my go-to website for learning new things about WordPress, even though I’m not a beginner.

  12. J h says

    “Once you are done, you need to save your changes and upload your wp-config.php file back to your server.”

    How again do you upload the file back to your server?

    • WPBeginner Support says

      You would need to use FTP or your host’s file manager again and there should be the option to upload and replace the file :)

      Administrador

  13. Daniel says

    The changes are not having effects. We are still with 40MB and the site does not accept the changes. What should I do?

    • WPBeginner Support says

      As we state at the end of the article, if our recommendations do not work, please reach out to your hosting provider as they may have set a limit that would override what you as a user can set.

      Administrador

  14. Liviu says

    Really worked.

    I had white screen when I wanted to create a new post on PC browser. But worked on my phone.

    Thanks

  15. John Harries says

    Thank you for providing a straight forward solution to an error which occurred when I tried to update the php version from 7.1 to 7.4

  16. Mart says

    Fantastic, thank you soooo much for this, simple straight talk.. excellent.. first problem solved … now got to learn more

    • WPBeginner Support says

      It can mean the site can take longer to notice issues if some arise but shouldn’t cause a major issue in general.

      Administrador

  17. Mujahid Siyal says

    I added the code problem is gone but a text “WP_MEMORY_LIMIT” has appeared in the top corner of logo. So what should I do about that?

    • WPBeginner Support says

      You would want to ensure you added the code snippet correctly as it is likely showing that code thinking it is text.

      Administrador

  18. David says

    “First you need to edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder, and you will need to use an FTP client or file manager in your web hosting control panel.”

    Simple! What does that mean? It is gobbledegook to me.

  19. Katerina says

    I’m new in WordPress and I’m trying to figure out, for a couple of days, why suddenly I get an error 500 and can’t save my edits. This helped solve my problem. Thank you so much!

  20. Arpita Hunka says

    This solution is not working for me, my website is hosted at AWS server and I have all the access, I have tried to set memory_limit in php.ini, wp-config and .htaccess. but still getting issue when accessing backend pages.

    • WPBeginner Support says

      You would want to reach out to the support for your hosting for what other options you have available with AWS

      Administrador

    • WPBeginner Support says

      If our recommendations are not working, you would want to reach out to your hosting provider and they should be able to assist

      Administrador

  21. Ivan says

    Hi, I had the memory exhausted message and I increased the wp memory limit to 12mb and it worked. Then a few days later I had the same error, so I had to increase the wp memory limit to 256mb and the message kept showing. I am currently on 1024mb, which seems excessive for a small website of 4 pages and a blog post of 15,000 words. Any suggestions how to resolve the issue or what might be causing it?

    • WPBeginner Support says

      You would want to reach out to your hosting provider and they can normally assist in finding the root of the issue for your specific site.

      Administrador

Deja tu comentario

Gracias por elegir dejar un comentario. Tenga en cuenta que todos los comentarios son moderados de acuerdo con nuestros política de comentarios, y su dirección de correo electrónico NO será publicada. Por favor, NO utilice palabras clave en el campo de nombre. Tengamos una conversación personal y significativa.