download and extraxt the archive.
you will see the following.
CVS folder, root folder, language folder, styles folder install.xml and modx.prosilver.en.xml.
-------------------------------------------------------------------------------------------------------------
open the root folder and copy everything to the root of your forum site, overwriting anything it asks.
follow these instructions exactly.
- Code: Select all
Open: includes/functions.php
Find
define('HEADER_INC', true);
add after
//-- [+] MOD: phpBB3 Portal ---------------------------------------------
//-- add
//
$user->add_lang('portal');
//
//-- [-] MOD: phpBB3 Portal ---------------------------------------------
Find
'S_USER_LOGGED_IN' => ($user->data['user_id'] != ANONYMOUS) ? true : false,
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to Find.
//-- [+] MOD: phpBB3 Portal ---------------------------------------------
//-- add
//
'U_PORTAL' => append_sid("{$phpbb_root_path}portal.$phpEx"),
'S_PORTAL_COPY' => $user->lang['PORTAL_COPY'],
//
//-- [-] MOD: phpBB3 Portal ---------------------------------------------
Open: adm/index.php
Find
$user->setup('acp/common');
add after
$user->add_lang('acp/portal');
The next parts are for the style type you are using. Open the styles folder and copy the contents of either the prosilver or subsilver folder to your theme.
------------------------------------------------------------------------
Prosilver Edits
- Code: Select all
Open: styles/prosilver/template/overall_header.html
Find
<div class="navbar">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to Find.
<!-- IF not $S_IN_PORTAL -->
Find
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
Replace With
Tip: Replace the preceding line(s) to Find with the following lines.
<li class="icon-home"><a href="{U_PORTAL}">{L_PORTAL}</a> » <a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>
Find
<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
add after
<!-- ENDIF -->
Open: styles/prosilver/template/overall_footer.html
Find
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
Replace With
Tip: Replace the preceding line(s) to Find with the following lines.
<li class="icon-home"><a href="{U_PORTAL}">{L_PORTAL}</a> » <a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
Find
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
add after
<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<!-- ENDIF -->
Subsilver Edits
- Code: Select all
Open: styles/subsilver2/template/overall_header.html
Find
<div id="menubar">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to Find.
<!-- IF not $S_IN_PORTAL -->
Find
<!-- INCLUDE breadcrumbs.html -->
<br />
add after
<!-- ENDIF -->
Open: styles/subsilver2/template/breadcrumbs.html
Find
<p class="breadcrumbs"><a href="{U_INDEX}">{L_INDEX}</a>
Replace With
Tip: Replace the preceding line(s) to Find with the following lines.
<p class="breadcrumbs"><a href="{U_PORTAL}">{L_PORTAL}</a> » <a href="{U_INDEX}">{L_INDEX}</a>
Open: styles/subsilver2/template/overall_footer.html
Find
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
add after
<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<!-- ENDIF -->
after peforming these tasks
1.Run install_portal.php. Once complete delete the install_portal.php file from your site.
2.Look at language folder for more required editing.( this is if you are not using the standard english version)
3.After installation, enter your ACP (Admin Control Panel) and click the "Purge the cache" button.