Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /home/nombre_usuario/public_html/wp-includes/registration.php on line 207
Lo unico que debes hacer es editar el archivo que esta en
wp-includes/default-constants.php
Y cambiar el tamaño del límite de memoria de 32M a 64M. Para que quede de la siguiente forma:
// set memory limits
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ’64M’);
} else {
define(‘WP_MEMORY_LIMIT’, ’64M’);
}
}
Otros usuarios también llegaron aquí buscando:
fatal error: allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in (2), Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) (1), cambiar en default-constants php 32 (1), error html en wordpress 3 2 (1), Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) (1)
Estoy actualizando y me da ese error. Asustado encuentro tu solución… pero cambio ese valor y me sigue dando el mismo fallo. Mi servidor es gratuito ¿será una restricción real de memoria?
Gracias