Fix WordPress White Screen Error de WordPress

What is la pantalla blanca?

El White Screen of Death (White Screen of Death or WSOD) muestra una página completemente en blanco without ningún message. Es causedo by un error PHP fatal que WordPress no puede mostrar. Es uno de los errors más comunes and tiene solution.

Solution 1 — Activate el mode debug

Open wp-config.php and cambia:

define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );

Now el error se saveá en wp-content/debug.log. Ábrelo for ver exactamente qué está fallando.

Solution 2 — Deactivate todos los plugins

Via FTP or Administrador de Files, renombra la folder wp-content/plugins a plugins_desactivados. If el sitio vuelve, el issue está en un plugin. Reactívalos uno by uno hasta encontrar el culpable.

Solution 3 — Change el theme

Renombrto your folder de theme active en wp-content/themes/tu-theme a tu-theme-bak. WordPress usará el theme by default. If el sitio vuelve, el issue está in the theme.

Solution 4 — Increase la memory PHP

Agrega en wp-config.php:

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

Solution 5 — Revisar el log de errors

  1. En cPanel ve a Métricas → Errors
  2. O busca el file error_log en public_html
  3. Las últimas líneas indican exactamente el file and línea que causó el error
No pudiste resolverlo? Open un support ticket with el content of the error_log and lo resolvemos.