What's new

Fusion CMS Forum bridge to IPBoard

DragonKyn

Banned User
25
2015
0
I'm not really sure what's going on here but I'm getting this weird error:

Code:
An Error Was Encountered

The forum bridge ipb does not exist in application/modules/register/controllers/bridges/

On top of that, I checked the folder its saying ipb doesn't exist in and the file is actually there. No idea how to proceed, perhaps someone who has experience with bridging FusionCMS could help me out?

Thanks!
 

ExO

Admin
5,119
2014
1,645
Is it the standard bridge for IPBoard that is provided?

I have one for vbulletin, but ipb should be made already.

Either way, are you sure it's properly formatted & exact same details as in the config file?

I've myself made it up and running on vbulletin, so I have an idea on how to proceed if you are still wanting to make it work.
 

erebus

Gold Supporter
Veteran Member
32
2016
0
Location
Colombia
edit file
application/modules/register/controllers/register.php

if(file_exists('application/modules/register/bridge/'.$this->config->item('forum_bridge').".php"))

change bridge >> plugins


if(file_exists('application/modules/register/plugins/'.$this->config->item('forum_bridge').".php")) correct
 
Top