Jump to content

CodeIgniter Include - Unable to complete this request due to an error.


Recommended Posts

Posted

Hey guys,

I want to manage some contens for a site running on CodeIgniter using PW.

But as I try to access CI, I get this error: Unable to complete this request due to an error.

I tried these ones, both return that error.

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

require __DIR__.'/../../cms/index.php';

class Processwire extends CI_Controller {

	public function index()
	{
		echo '<pre>';
		
		var_dump($wire->pages->get('/news/'));
	}

}

/* End of file suche.php */
/* Location: ./system/application/controllers/processwire.php */

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Processwire extends CI_Controller {

	private $wire = null;

	function __construct()
	{
		require __DIR__.'/../../cms/index.php';
		$this->wire = $wire;
	}

	public function index()
	{
		echo '<pre>';
		
		var_dump($this->wire->pages->get('/news/'));
	}

}

/* End of file suche.php */
/* Location: ./system/application/controllers/processwire.php */

Any Ideas what might cause the error? PW doesn't log anything, even with debug turned on.

It it CI specific, as I can use the same code using a independent php file.

Thanks

Posted

Hi FvG

I think this is an issue with variable scope. One easy way to resolve this is to just use the wire() function, instead of the variable. In your first example, it would just change to:

var_dump( wire('pages')->get('/news/') );
 

That should then work as expected.

Posted

It will even happen when I just require it. Required it somewhere else now and got this error:

Error:  Cannot use object of type Config as array (line 36 of /var/www/virtual/fvg/html/system/modules/fuel/config/fuel.php)

Posted

One of the issues I didn't notice before was that your controller was called "Processwire" - the CI class name conflicts with ProcessWire's - so I would advise using an alternative name for your CI class. I also think the include path is throwing things out a bit. My test looks something like this:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

require_once(realpath(FCPATH . '../../test/processwire') . '/index.php');

class Welcome extends CI_Controller {

	public function index()
	{
		$this->load->view('welcome_message');
		echo wire('pages')->get('/')->title;
	}
}

/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

Can you make changes to yours to reflect the above?

FCPATH is the location of CI's index.php; and realpath() will convert the whole "relative" path to the correct full filesystem path, and then we just add PW's index.php on the end of that.

Posted

Using your code I still get an error. Logging this:

Error:  Call to undefined method Modules::get() (line 102 of /var/www/virtual/fvg/html/cms/wire/core/ProcessWire.php)

Posted

Yes it sounds to me like there are class name collisions. That won't be an issue once both PW and Fuel are namespaced, but that also doesn't guarantee that the two will run alongside each other either. I do know of people that have used CI and ProcessWire alongside each other, and apparently that works pretty well. But I'm not aware of anyone running ProcessWire and another CMS running on the same request, including files from one another. Though I did once bootstrap Drupal from ProcessWire. :) 

Posted

Though I did once bootstrap Drupal from ProcessWire. :)

Is like 'Though I did once win the Indy 500 in a car powered by a twisted rubber band'.

  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...