Welcome Guest, Not a member yet? Register   Sign In
CI2 - Is there an issue with loading libs?
#1

[eluser]stormbytes[/eluser]
Just upgraded to CI2 - latest build.

Well.. Made the required changes to model name conventions, etc. So far looks just fine.

Here's a caveat -

It doesn't want to load my own libs. I created a class called MY_common.php (code below).

I'm trying to load it via $this->load->library('common'); and it won't take it.

I also tried autoload, same deal.

Uhm.. Clues?
filename: MY_common.php

Code:
<?php

if (! defined('BASEPATH')) exit('No direct script access');

class MY_common extends Controller
{

    function __construct()
    {
        parent::Controller();
        
        $data = array(
        
            'arrow_doc_title'       =>  $this->config->item('doc_title')
        
            );
        
        $this->load->vars($data);
    }
    
    function index()
    {
        
    }

}
Code:
An Error Was Encountered

Unable to load the requested class: Common


Messages In This Thread
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 01:41 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 02:38 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 02:40 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 03:01 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 03:05 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 03:10 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 03:16 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 05:51 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 05:56 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 06:38 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 08:33 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 08:38 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 08:49 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-23-2010, 10:05 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-24-2010, 12:16 PM
CI2 - Is there an issue with loading libs? - by El Forum - 10-26-2010, 03:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB