13 Common WordPress Errors [And How To Fix Them]

13 Common WordPress Errors [And How To Fix Them]

Table of content

    WordPress errors: WordPress is a powerful CMS, maybe the most popular in 2023, that has enabled many businesses to grow online. The bad part is that it can be an overwhelming platform for those who have never used it before. In this article, I will mention most of them and how to fix them.

    We decide to split the article (too long to be read) into smaller articles. You can find the articles below:

    1. Warning – “Cannot Modify Header Information” Error
    2. WordPress Uploading Image Error
    3. Unable to delete a plugin
    4. WordPress 403 error
    5. WordPress Sidebar Error
    6. WordPress Blank Page
    7. WordPress 404 page not found
    8. WordPress White Screen of Death
    9. WordPress Memory Exhausted Error
    10. WordPress Error Establishing a Database Connection
    11. WordPress Update Failed Error
    12. WordPress Connection Timed Out Error
    13. WordPress Internal Server Error
    14. WordPress Syntax Error


    How To Turn On Debug Messages For WordPress

    This simple thing will help you find the best solution for getting rid of the most WordPress errors. I already mentioned above the “WordPress debug” feature. Below I will make a special section about it.

    By default, WordPress will turn off all debugging messages so the visitor to the site can’t see any error messages showing anything wrong with the code.

    If you do any WordPress development, such as new plugins or theme development, this can cause a problem as you won’t see if you have any settings wrongs.

    Turning on debug mode will display all warnings or error messages you have with any installed plugins or themes. The “WordPress debug” feature makes it easy to spot outdated or use old WordPress functions that are not supported anymore.

    Turn On Debugging

    To turn on debug messages you need to open up your wp-config.php file and find the line.

    define('WP_DEBUG', false);

    Comment out this line a replace it with.

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

    Please Note

    You must remember to turn this off when you put your website live or the visitor will be able to see all your debugging messages.

    Leave a comment

    All comments are moderated before being published.

    This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.