From d2df9bc7cc9d4b3e53818470c5d0977c9a36677c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sun, 15 Apr 2007 17:41:17 +0000 Subject: update pMachine to EllisLab update copyright year update Code Igniter to CodeIgniter --- user_guide/general/errors.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'user_guide/general/errors.html') diff --git a/user_guide/general/errors.html b/user_guide/general/errors.html index 86e18881e..e19af059a 100644 --- a/user_guide/general/errors.html +++ b/user_guide/general/errors.html @@ -2,7 +2,7 @@ -Code Igniter User Guide +CodeIgniter User Guide @@ -22,7 +22,7 @@ window.onload = function() { - + @@ -33,7 +33,7 @@ window.onload = function() {
- +

Code Igniter User Guide Version 1.5.2

CodeIgniter User Guide Version 1.5.3

@@ -45,7 +45,7 @@ window.onload = function() { @@ -62,15 +62,15 @@ Error Handling

Error Handling

-

Code Igniter lets you build error reporting into your applications using the functions described below. +

CodeIgniter lets you build error reporting into your applications using the functions described below. In addition, it has an error logging class that permits error and debugging messages to be saved as text files.

-

Note: By default, Code Igniter displays all PHP errors. You might +

Note: By default, CodeIgniter displays all PHP errors. You might wish to change this behavior once your development is complete. You'll find the error_reporting() function located at the top of your main index.php file. Disabling error reporting will NOT prevent log files from being written if there are errors.

-

Unlike most systems in Code Igniter, the error functions are simple procedural interfaces that are available +

Unlike most systems in CodeIgniter, the error functions are simple procedural interfaces that are available globally throughout the application. This approach permits error messages to get triggered without having to worry about class/function scoping.

@@ -85,7 +85,7 @@ about class/function scoping.

application/errors/error_404.php

The function expects the string passed to it to be the file path to the page that isn't found. -Note that Code Igniter automatically shows 404 messages if controllers are not found.

+Note that CodeIgniter automatically shows 404 messages if controllers are not found.

log_message('level', 'message')

@@ -112,7 +112,7 @@ log_message('info', 'The purpose of some variable is to provide some value.');
  • Error Messages. These are actual errors, such as PHP errors or user errors.
  • Debug Messages. These are messages that assist in debugging. For example, if a class has been initialized, you could log this as debugging info.
  • -
  • Informational Messages. These are the lowest priority messages, simply giving information regarding some process. Code Igniter doesn't natively generate any info messages but you may want to in your application.
  • +
  • Informational Messages. These are the lowest priority messages, simply giving information regarding some process. CodeIgniter doesn't natively generate any info messages but you may want to in your application.
  • @@ -135,7 +135,7 @@ Previous Topic:  URI Routing User Guide Home   ·   Next Topic:  Page Caching

    -

    Code Igniter  ·  Copyright © 2006  ·  Ellislab, Inc.

    +

    CodeIgniter  ·  Copyright © 2007  ·  Ellislab, Inc.

    -- cgit v1.2.3-24-g4f1b