I have set this in my index.php file that loads another parts of application:
error_reporting(0);
but instead of blank white screen I still get this error:
An Error Was Encountered
application/modules/pages/config/routes.php does not contain a valid route array
EDIT: CodeIgniter's root index.php content :
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(0);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
I have set:
error_reporting(0); and define('ENVIRONMENT', 'production'); and also ini_set("display_errors","0");
but it stills shows PHP errors.
EDIT:
My application/modules/pages/config/routes.php:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// $route['pages'] = "pages/index";
// $route['404_override'] = 'custom404';
SOLVED!
The problem was within CodeIgniter's core function show_error() so you can solve it by adding e.g. this condition
if(ENVIRONMENT != 'production') {
echo $_error->show_error($heading, $message, 'error_general', $status_code);
}
so it will loks like this:
/**
* Error Handler
*
* This function lets us invoke the exception class and
* display errors using the standard error template located
* in application/errors/errors.php
* This function will send the error page directly to the
* browser and exit.
*
* @access public
* @return void
*/
if ( ! function_exists('show_error'))
{
function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered')
{
$_error =& load_class('Exceptions', 'core');
if(ENVIRONMENT != 'production') {
echo $_error->show_error($heading, $message, 'error_general', $status_code);
}
exit;
}
}
