I’m just gonna bump this for a sec. Very simple bridge, I like the concept.
I have installed a phpbb3, no problem. Can access it and everything. The moment I reference the library in my code by loading it, the page fails though.
parent::Controller();
$this->load->model('model_persoon', '', TRUE);
$this->load->model('model_karakter', '', TRUE);
$this->load->model('model_inschrijving', '', TRUE);
$this->load->library('phpbb_library');
That is the include bit of the constructor of the controller in which I want access to the phpbb_library library. My suspicion is that I am not putting down the correct FORUM_ROOT_PATH. I have tried quite a few options there though. It is located at http://www.symbols-larp.com/phplarp/phpBB3
This did not work:
base_url() . '/phpBB3/'
'/www/phplarp/phpBB3/'
'/www.symbols-larp.com/phplarp/phpBB3/'
'/symbols-larp.com/phplarp/phpBB3/'
'/phplarp/phpBB3/'
Or it could be something else all together. Any clue?