[eluser]dpgtfc[/eluser]
[quote author="wiredesignz" date="1227301714"]To which constructor of which class are you referring?
If you would like more help you will need to post your code so I can try to work out what is happening.
Posting your debug logs may also help.[/quote]
The constructor of the controller class, like so:
Code:
<?php
class Panel extends Controller
{
function Panel()
{
parent::Controller();
$this->load->library('pagination');
}
}
If I comment out $this->load-library('pagination'); and use autoload for pagination, it works. Otherwise I get the message from before.
Now, I didn't install ME from a fresh CI install, I dropped it into an existing application, one that worked fine before. It works fine now too, but only if I remove the pagination load from all my constructors that use it. I didn't make any other changes though so I don't know what I am doing wrong.
Edit: I'm at school right now, finishing a paper, but when I get home I'll post more.