Quote:
Originally Posted by kall
Amy, I had exactly the same problem... amongst many others involving the base_url variable not picking up the /forums/ path.
You need to go into arcade.php and fully qualify the path to arcade.php in the base_url parts at the top.
Fixed almost all the errors for me.
|
Yep. This fixed it. Specifically, change these two lines:
Code:
// modified to make less use of the index.php
$ibforums->vars['base_url'] = "arcade.php?$session[sessionurl]&";
$ibforums->base_url = "arcade.php?$session[sessionurl]&";
To
Code:
// modified to make less use of the index.php
$ibforums->vars['base_url'] = "/forums/arcade.php?$session[sessionurl]&";
$ibforums->base_url = "/forums/arcade.php?$session[sessionurl]&";