In this article, we will explain how to enable and disable PHP error message settings in a .htaccess file.

Follow the following steps to enable and disable PHP error message settings.

1. Log into your account using SSH.

2. Now, you need to use a text editor here to modify the .htaccess files as follows:

Add the next line to stop PHP from showing error messages:

php_flag display_errors Off


Add the following line, to allow PHP to display error messages.

php_flag display_errors On

3. Click to Save the changes to the .htaccess file and exit the text editor.

4. To check the new setting is active, create a PHP test file that contains the following code in the same directory where the .htaccess file is located.

<?php phpinfo(); ?>

5. Search for the directive’s name after loading the test file in your web browser. The new setting that you defined in the .htaccess file should appear in the Local Value column.

In this way, you can enable and disable PHP error message settings in an .htaccess file.

Popular Posts You May Read

Explore more hosting insights, tips and industry updates.

SSD Security: Limitations of Encryption Software For Securing SSDs

This article offers background, explanations, and tips to aid in decision-making when encrypting SSD drives…

How to Wipe Out a MySQL Database Using cPanel

This guide explains step-by-step how to delete a MySQL database in cPanel. Steps to Wipe…

How to Easily Download & Install Postman on Your Windows

A well-liked tool for developing, testing, and modifying APIs is Postman. This is a step-by-step…