
No help at all?Mudjosh wrote:Some major issues..
First, some details:
The way I have my forum in my database is this:
Root/_____
With the "____" being my forum's directories and scripts.
Now, here's my issues:
1. when I first installed this mod, I tried to go to my site test.com/index.php but I was rerouted to test.com which showed up blank..
I saw some people having issues with the mod rerouting the index to their portal so I tried their fix.. Seemed to work.. Now when I am in the ACP and click return to index, I get a 404 error.. (Because I renamed the index.php to forum.php)
2. When I go to a forum within the site, I get rerouted back to my newly named forum.php and it doesn't seem to be using the .css anymore.. So in otherwords, it seems broke..
I will be uninstalling this mod sadly. Could anyone help me for a future attempt?
Code: Select all
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&$u_sort_param&start=$start"),
'U_MARK_TOPICS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&mark=topics") : '',
Code: Select all
'U_VIEW_FORUM' => format_url($forum_name, "f$forum_id", $start, $u_sort_param),
'U_MARK_TOPICS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? format_url($forum_name, "f$forum_id", 0, 'mark=topics') : '',
Code: Select all
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id" . ((strlen($u_sort_param)) ? "&$u_sort_param" : '') . "&start=$start"),
'U_MARK_TOPICS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'hash=' . generate_link_hash('global') . "&f=$forum_id&mark=topics") : '',
Code: Select all
'S_FORUM_ACTION' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&start=$start"),
Code: Select all
'S_FORUM_ACTION' => format_url($forum_name, "f$forum_id", $start),
Code: Select all
Parse error: syntax error, unexpected $end in /home/my_big_gay_non_functioning_website/public_html/viewtopic.php on line 1708