PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : phpbb3 Mods



Sarge_stoni
21.06.2009, 01:25
Joo, ehrlich gesagt habe ich keine ahnung wie man Mods für phpbb3 Installiert und möchte ma gerne wissen wie man z.b den mod Board3 für Phpbb 3.0.5 Installiert, Das tut von board3 habe ich ned verstanden btw ist es ziemlich komisch geschrieben.

Aufjedenfall hoffe ich ihr könnt mir helfen :D

Dexx
21.06.2009, 01:58
Ich weiß nicht was man da großartig anders erklären soll.
So wirds gemacht :>, ich hatte keine Probleme mit der Anleitung das Portal aufzusetzen. Beim 1. Beispiel: Du startest die .htaccess und Bei Find das suchst du mit strg+f und gibst ein:
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>

dann machste "ENTER" und gibst das ein was bei Add after steht, also:

DirectoryIndex portal.php index.php index.html index.htm

und so gehts immer weiter. wo liegt da dein prob?


Edits

swxUse your keyboard to navigate the code boxes. You may also hit 's' on your keyboard to go to the first code box.
Open: .htaccess

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
DirectoryIndex portal.php index.php index.html index.htm


<< Hide (http://free-hack.com/#)


Open: viewonline.php

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
case 'report':
$location = $user->lang['REPORTING_POST'];
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
break;

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
case 'portal':
$user->add_lang('mods/lang_portal');
$location = $user->lang['VIEWING_PORTAL'];
$location_url = append_sid("{$phpbb_root_path}portal.$phpEx");
break;


<< Hide (http://free-hack.com/#)


Open: adm/index.php

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
require($phpbb_root_path . 'includes/functions_module.' . $phpEx);

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
require($phpbb_root_path . 'portal/includes/lang_adm_additional_blocks.' . $phpEx);


<< Hide (http://free-hack.com/#)


Open: includes/constants.php

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
// Additional tables

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
define('PORTAL_CONFIG_TABLE', $table_prefix . 'portal_config');


<< Hide (http://free-hack.com/#)


Open: includes/functions.php

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
// The following assigns all _common_ variables that may be used at any point in a template.

Add before

Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
$user->add_lang('mods/lang_portal');
include_once($phpbb_root_path . 'portal/includes/functions.'.$phpEx);
$portal_config = obtain_portal_config();


<< Hide (http://free-hack.com/#)
Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
'U_PRIVATEMSGS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&amp;folder=inbox'),

Add before

Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
'U_PORTAL' => ($portal_config['portal_enable']) ? append_sid("{$phpbb_root_path}portal.$phpEx") : '',


<< Hide (http://free-hack.com/#)


Open: includes/session.php

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
if (!empty($_GET['style']) && $auth->acl_get('a_styles'))

Replace With

Tip: Replace the preceding line(s) to find with the following lines.
Code:Select All (http://free-hack.com/#)
if (!empty($_GET['style']))


<< Hide (http://free-hack.com/#)


Open: styles/prosilver/template/overall_header.html

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
<div class="navbar">

Add before

Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->


<< Hide (http://free-hack.com/#)
Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>‹</strong>

In-line Find

Tip: This is a partial match of a line for in-line operations.
Code:Select All (http://free-hack.com/#)
<li class="icon-home">

In-line Add after


Code:Select All (http://free-hack.com/#)
<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> » <!-- ENDIF -->



<< Hide (http://free-hack.com/#)
Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
<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

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
<!-- ENDIF -->


<< Hide (http://free-hack.com/#)


Open: styles/prosilver/template/overall_footer.html

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>

In-line Find

Tip: This is a partial match of a line for in-line operations.
Code:Select All (http://free-hack.com/#)
<li class="icon-home">

In-line Add after


Code:Select All (http://free-hack.com/#)
<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> » <!-- ENDIF -->



<< Hide (http://free-hack.com/#)


Open: styles/prosilver/theme/stylesheet.css

Find

Tip: This may be a partial find and not the whole line.
Code:Select All (http://free-hack.com/#)
@import url("colours.css");

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All (http://free-hack.com/#)
@import url("portal.css");


<< Hide (http://free-hack.com/#)




DIY Instructions

These are manual instructions that cannot be performed automatically. You should follow these instructions carefully.

Code:Select All (http://free-hack.com/#)
Rufe install/ auf und führe den Installer aus

Aktualisiere deine Styles:
"Administrations-Bereich" (ACP) > "Styles" > "Templates" > jedes > "Aktualisieren"
"Administrations-Bereich" (ACP) > "Styles" > "Themes" > jedes > "Aktualisieren"
"Administrations-Bereich" (ACP) > "Styles" > "Grafiksammlungen" > jedes > "Aktualisieren"

Leere den Cache im "Administrations-Bereich" (ACP) > "Allgemein" > "Den Cache leeren"




Code:Select All (http://free-hack.com/#)
Browse to install/ and run the installer

Refresh your Styles:
"Administration Control Panel" (ACP) > "Styles" > "Templates" > each > "refresh"
"Administration Control Panel" (ACP) > "Styles" > "Themes" > each > "refresh"
"Administration Control Panel" (ACP) > "Styles" > "Imagesets" > each > "refresh"

Clear your cache in the "Administration Control Panel" (ACP) > "General" > "Purge the cache"






Save all files. End of MOD.

You have finished the installation for this MOD. Upload all changed files to your website. If the installation went bad, simply restore your backed up files.

cl9wn
21.06.2009, 02:03
Ja, die xml datei mit nem browser öffnen. Es gibt für diese Mods keine installer, weil es ja sein kann, dass du mehrere und verschiedene Mods installieren willst. Und für jeden Mod muss man an den originaldateien rumschrauben. Mit einem installer würden die also jedes mal überschrieben werden, deswegen gehts nur manuell. Habs auch noch nie gemacht, heute zum ersten Mal. Hat wunderbar geklappt.

Sarge_stoni
21.06.2009, 02:24
hmm kk xD muss erstma wissen wie ich htacces einrichte btw was das überhaupt ist :D

Dexx
21.06.2009, 02:32
sollte im httpdocs ordner sein? wenn nicht tust du mir leid :/

Sarge_stoni
21.06.2009, 03:35
Ich hab immer gewusst das du gefühle für mich hast Dexx :=) da is kein httpdocs ordner ^^