I'll try that and get back to you. Is there a way to get rid of the rss feed buttons on the forums as well?Kirk wrote:You have to make the instructions as it is in the install.xml.
Portal issues
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
Topic author - Active Member
- Posts: 18
- Joined: 15. May 2009 05:01
Re: Portal issues
Re: Portal issues
Only controlling the installation of Portal.UnknownReverence wrote:Is there a way to get rid of the rss feed buttons on the forums as well?
Gruß Udo
-
Topic author - Active Member
- Posts: 18
- Joined: 15. May 2009 05:01
Re: Portal issues
Well, I did the edits and I'm getting an error now.Kirk wrote:Only controlling the installation of Portal.UnknownReverence wrote:Is there a way to get rid of the rss feed buttons on the forums as well?
Code: Select all
General Error
Language file ./language/en/mods/lang_portal.php couldn't be opened.
BACKTRACE
FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()
FILE: [ROOT]/includes/session.php
LINE: 2098
CALL: trigger_error()
FILE: [ROOT]/includes/session.php
LINE: 2046
CALL: user->set_lang()
FILE: [ROOT]/includes/functions.php
LINE: 4563
CALL: user->add_lang()
FILE: [ROOT]/index.php
LINE: 139
CALL: page_header()
-
Topic author - Active Member
- Posts: 18
- Joined: 15. May 2009 05:01
Re: Portal issues
I never got one with the download.Kirk wrote:The lang_portal.php file missing in the folder ./language/en/mods
Re: Portal issues
Download the complete package viewtopic.php?f=40&t=9384
unpack it and call the install.xml with your browser
follow the instructions
Installing MODs the Right Way
unpack it and call the install.xml with your browser
follow the instructions
Installing MODs the Right Way
Gruß Udo
-
Topic author - Active Member
- Posts: 18
- Joined: 15. May 2009 05:01
Re: Portal issues
I've done that. Doing the edits for the viewonline, constants, functions, and session is what messed everything up.Kirk wrote:Download the complete package viewtopic.php?f=40&t=9384
unpack it and call the install.xml with your browser
follow the instructions
Installing MODs the Right Way
I found the culprit. It has to deal with an edit in the functions. I clearly did the correct edit, but that's the error I get when I do it.
Code: Select all
$user->add_lang(array('mods/lang_portal', 'mods/additional_blocks'));
if (!function_exists('obtain_portal_config'))
{
include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
}
if(sql_table_exists(PORTAL_CONFIG_TABLE) == true)
{
$portal_config = obtain_portal_config();
}
-
Topic author - Active Member
- Posts: 18
- Joined: 15. May 2009 05:01
Re: Portal issues
I never would have noticed I ended up changing to different instructions. I had a dull moment there. Thanks for pointing that out. That fixed it.Kirk wrote:This is the instructions for the version 1.0.6 and not for version 2.0.1