Welcome Guest, Not a member yet? Register   Sign In
segfault after upgrading 1.7.2 to 2.0 - Help!
#1

[eluser]lsalsich[/eluser]
All - I've been wrestling with this for a few days now. Searched everywhere and have tested various setting, etc. I'm out of ideas and could really use some suggestions from others, please.

I've upgraded my CI code from 1.7.2 to 2.0 following all the instructions. When I get to the point where I'm changing the first instance of
Code:
class Search extends CI_Controller{

function search() {
  parent::Controller();
  $this->load->model('msearch');
}
}

to:

Code:
class Search extends CI_Controller{

function __construct() {
  parent::__construct();
  $this->load->model('msearch');
}
}

Calling this controller causes the server to return a 324 error (blank page) and a seg fault in Apache. I've tried similar changes in other controllers with identical effects.

Any ideas what I'm doing wrong?


Messages In This Thread
segfault after upgrading 1.7.2 to 2.0 - Help! - by El Forum - 09-11-2012, 08:22 AM
segfault after upgrading 1.7.2 to 2.0 - Help! - by El Forum - 09-11-2012, 08:37 AM
segfault after upgrading 1.7.2 to 2.0 - Help! - by El Forum - 09-11-2012, 10:27 AM
segfault after upgrading 1.7.2 to 2.0 - Help! - by El Forum - 09-11-2012, 10:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB