Revista Informática

Drupal, Fatal error: Allowed memory size of N bytes exhausted (tried to allocate N bytes)

Publicado el 11 mayo 2021 por Oscar Oscar Meza @vidagnu

Si aparece en Drupal el mensaje de error: Fatal error: Allowed memory size of N bytes exhausted (tried to allocate N bytes), debemos incrementar la cantidad de memoria asignada agregando la siguiente linea el archivo settings.php.

ini_set('memory_limit', '512M');

En este caso estoy asignando un limite de 512MB, si se necesita mas o menos hay que modificar este valor, el archivo settings.php se encuentra en [drupal raiz]/sites/default/


Volver a la Portada de Logo Paperblog