---
title: "Fix Joomla Blank Page (White Screen of Death) - Joomla"
description: "The infamous Joomla \"Blank Page\" or \"White Screen of Death\" (WSOD) can be frustrating, as it provides no error message or clue about the cause. This i"
url: "https://www.tassos.gr/docs/joomla/troubleshoot/joomla-white-screen-of-death"
date: "2026-04-23T16:28:48+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Joomla ](https://www.tassos.gr/index.php?option=com_content&view=category&id=91) / [ Troubleshooting ](https://www.tassos.gr/index.php?option=com_content&view=category&id=93)

#  Fix Joomla Blank Page (White Screen of Death)

The infamous Joomla "Blank Page" or "White Screen of Death" (WSOD) can be frustrating, as it provides no error message or clue about the cause. This issue typically occurs due to server misconfigurations, PHP errors, or incompatible extensions. Below is a step-by-step guide to identify and fix the problem.

## [Enable Error Reporting](#enable-error-reporting)

Joomla’s error reporting is often turned off by default, which makes troubleshooting difficult.

1. Log in to your Joomla **Administrator Panel**.
2. Navigate to **System &gt; Global Configuration &gt; Server Tab**.
3. Set **Error Reporting** to **Maximum** and save the changes.
4. Reload the page where the issue occurs.

If you cannot access the administrator area:

- Edit the `configuration.php` file in your Joomla root directory.
- Find the line starting with `$error_reporting` and set it to:

 ```
public $error_reporting = 'maximum';
```

Reload the page to see error messages that provide clues about the issue.

## [Clear Cache](#clear-cache)

Cached files can sometimes cause display issues.

1. Go to **System &gt; Clear Cache** in the admin panel.
2. Select all cache files and click **Delete**.

If you cannot access the admin panel, manually delete files in the `/cache` and `/administrator/cache` folders using FTP or your file manager.

## [Disable Third-Party Extensions](#disable-third-party-extensions)

Incompatible or faulty extensions are a common cause of the WSOD.

Rename the folder of the suspected extension in `/plugins`, `/components`, or `/modules` via FTP or your file manager. For example, rename `/plugins/myplugin` to `/plugins/myplugin_backup`.

Reload the site to see if the issue is resolved.

If renaming the folder resolves the issue, uninstall the extension and look for an updated or alternative version.

## [Replace the .htaccess File](#replace-the-htaccess-file)

A misconfigured `.htaccess` file can prevent Joomla from loading properly.

1. Rename the current `.htaccess` file to `.htaccess_backup`.
2. Replace it with Joomla’s default `.htaccess` file, located as `htaccess.txt` in the root directory.
3. Rename `htaccess.txt` to `.htaccess`.

Reload the site to check if this resolves the issue.

## [Increase PHP Memory Limit](#increase-php-memory-limit)

Joomla may encounter a blank page if it exceeds the server’s memory limit.

Edit your server’s `php.ini` file or `.htaccess` file and increase the memory limit. For example: *memory\_limit = 128M*

If you can’t edit these files, contact your hosting provider to increase the limit.

## [Restore from Backup](#restore-from-backup)

If you cannot identify the issue, restoring your site from a backup may be the best option. Always maintain regular backups of your Joomla site.

1. Use your backup solution (e.g., Akeeba Backup) to restore the website to a previous state.
2. After restoring, ensure all extensions, templates, and Joomla itself are up to date to avoid repeating the issue.

## [Contact Your Hosting Provider](#contact-your-hosting-provider)

If all else fails, your hosting provider may be able to identify server-level issues, such as ModSecurity rules, file permission errors, or other configurations affecting Joomla’s functionality.

 Last updated on Jan 27th 2025 10:01

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Home",
            "item": "https://www.tassos.gr/docs"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Joomla",
            "item": "https://www.tassos.gr/docs/joomla"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Troubleshooting",
            "item": "https://www.tassos.gr/docs/joomla/troubleshoot"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Fix Joomla Blank Page (White Screen of Death)",
            "item": "https://www.tassos.gr/docs/joomla/troubleshoot/joomla-white-screen-of-death"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/joomla/troubleshoot/joomla-white-screen-of-death"
    },
    "headline": "Fix Joomla Blank Page (White Screen of Death)",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Tassos Marinos",
        "url": "https://www.tassos.gr/docs/joomla/troubleshoot/joomla-white-screen-of-death"
    },
    "datePublished": "2025-01-27T10:25:13+02:00",
    "dateCreated": "2025-01-27T10:25:13+02:00",
    "dateModified": "2025-01-27T10:29:56+02:00"
}
```
