Code: Select all
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
Brf wrote:In includes/functions.php, you shoul dhave this line:
Apparently, it has been redefined as "./" on your board.Code: Select all
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
Code: Select all
<li class="icon-home"><a href="{U_PORTAL}">{L_PORTAL}</a> » <a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
Code: Select all
<li class="icon-home"><a href="./portal.php">Portal</a> » <a href="./" accesskey="h">Board index</a>
This code is not there, i have purged the cache as well.and this is the generated code in your index:Code: Select all
<li class="icon-home"><a href="./portal.php">Portal</a> » <a href="./" accesskey="h">Board index</a>
Code: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
What does that have to do with 'U_INDEX' ?Surf007 wrote:This is the code i found in index.phpCode: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
is there anything wrong with it?