Welcome Guest, Not a member yet? Register   Sign In
redirect() throwing error
#1

[eluser]VirtualDevel[/eluser]
Hi guys, I get the following error when I call redirect() :

Quote:Fatal error: Call to a member function site_url() on a non-object in /var/www/vhosts/[host-name]/httpdocs/system/helpers/url_helper.php on line 45

Here is the code in the controller:
Code:
if ($this->do_upload()) {
   redirect('/admin/stuff/editor', 'refresh');
}

Not sure why I am getting this, any ideas?
#2

[eluser]VirtualDevel[/eluser]
Wow, ok, I got it, was calling:

Code:
// Constructor
function Stuff() {
parent::Controller();

$this->config =& get_config();

In my constructor, as I had some vars set there. Removing that resolved the issue..hmm
#3

[eluser]Seppo[/eluser]
Just to clarify why, the controller attribute "config" is reserved to hold the ci config object.
#4

[eluser]VirtualDevel[/eluser]
Thanks..appreciate the explination Smile




Theme © iAndrew 2016 - Forum software by © MyBB