Codeigniter initializing multiple times per page load

Posted by Clayton on Stack Overflow See other posts from Stack Overflow or by Clayton
Published on 2010-03-27T22:08:27Z Indexed on 2010/03/27 22:13 UTC
Read the original article Hit count: 424

Filed under:
|

I'm using Codeigniter for my application and have something wrong with my configuration. When I load a page, the framework initializes several times (see logs below). I have built other applications with Codeigniter and have never seen this behavior before.

Log output:

DEBUG - 2010-03-27 14:50:32 --> Config Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Hooks Class Initialized
DEBUG - 2010-03-27 14:50:32 --> URI Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Router Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Output Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Input Class Initialized
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> Global POST and COOKIE data sanitized
DEBUG - 2010-03-27 14:50:32 --> Language Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Loader Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Config file loaded: config/redux_auth.php
DEBUG - 2010-03-27 14:50:32 --> Config file loaded: config/email.php
DEBUG - 2010-03-27 14:50:32 --> Helper loaded: url_helper
DEBUG - 2010-03-27 14:50:32 --> Helper loaded: form_helper
DEBUG - 2010-03-27 14:50:32 --> Helper loaded: html_helper
DEBUG - 2010-03-27 14:50:32 --> Database Driver Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Session Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Helper loaded: string_helper
DEBUG - 2010-03-27 14:50:32 --> Helper loaded: file_helper
DEBUG - 2010-03-27 14:50:32 --> Session routines successfully run
DEBUG - 2010-03-27 14:50:32 --> Form Validation Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Model Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Controller Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> Config Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Hooks Class Initialized
DEBUG - 2010-03-27 14:50:32 --> URI Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Router Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Output Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Input Class Initialized
DEBUG - 2010-03-27 14:50:32 --> XSS Filtering completed
DEBUG - 2010-03-27 14:50:32 --> Global POST and COOKIE data sanitized
DEBUG - 2010-03-27 14:50:32 --> Language Class Initialized
DEBUG - 2010-03-27 14:50:32 --> Loader Class Initialized

...

This repeats three more times

© Stack Overflow or respective owner

Related posts about codeigniter

Related posts about php