Skip to content

Instantly share code, notes, and snippets.

@kerasai
Last active January 25, 2019 12:09
Show Gist options
  • Save kerasai/8b79d60ae7a67015986d8e552fa25510 to your computer and use it in GitHub Desktop.
Save kerasai/8b79d60ae7a67015986d8e552fa25510 to your computer and use it in GitHub Desktop.
PHP/Drupal Error Reporting
<?php
# Error reporting.
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
ini_set('memory_limit', '64M');
# Drupal mail system to DevelMailLog.
$conf['mail_system'] = array(
'default-system' => 'DevelMailLog',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment