Drupal: .htaccess Access Deny
August 21, 2014 – 7:59 am | No Comment

In this article I will tell how to forbid access to certain resources for some clients. The instructions will include descriptions of different directives.

Read the full story »
CSS Templates

Contain reviews and news about CSS Templates.

Freebies

Contain freebies such as icons, graphics, headers and images for your websites.

Fun Stuff

Contains other fun stuff for entertainment or interesting site showcase.

How-To

Contain technical elaborations on some specific workarounds or common tweak.

Joomla Templates

Contains reviews and news about Joomla templates.

Home » How-To

Drupal: Enable Displaying of PHP Alerts and Errors

Submitted by on March 2, 2011 – 11:16 amNo Comment

This article would tell you how to show PHP alerts and errors.

Solutions:

Enable showing of all errors on the Drupal settings page

  • Open “Error reporting” page
    • Drupal 6: admin/settings/error-reporting
    • Drupal 5: admin/settings/error-reporting
  • Below the page, set “Error reporting” parameter to “Record errors to log file”. This way errors will be logged and will not be shown in user web-browser.

Enable errors output to php.ini

You can change level of errors output in php.ini file (configuration file PHP). To do so, it is necessary to find error_reporting parameter in php.ini file:

error_reporting = E_ALL

Enable errors output to .htaccess file

You can change errors output level on remote server supporting .htaccess by adding the following line to .htaccess file located in the root of your site:

php_value error_reporting E_ALL

Another option:

php_flag display_errors on
php_flag display_startup_errors on

Enable errors output in PHP-scripts code

Enabling notifications and alerts output is possible if you add the following code:

error_reporting(7);

before this line in index.php file:

require_once ‘./includes/bootstrap.inc';

Good luck!

Leave a comment!

Add your comment below, or trackback from your own site. You can also subscribe to these comments via RSS.

Be nice. Keep it clean. Stay on topic. No spam.

You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

This is a Gravatar-enabled weblog. To get your own globally-recognized-avatar, please register at Gravatar.