Seite 1 von 1

MODs - Wie?

Verfasst: 30.01.2003 02:08
von Catbytes
Hi Leute,

bin gerade dabei ein phpbb-Sys aufzubauen.

Jetzt würde ich gerne ein paar MODs einbauen - nur wie?

Nirgendwo steht beschrieben, wie das geht (oder ich bin einfach nur blind).

Beispiel:

Habe folgendes MOD:

Code: Alles auswählen

############################################################## 
## MOD Title: Change Default phpBB Logo
## MOD Author: Chaos < admin@thekaoszone.com > (Richard) http://www.thekaoszone.com 
## MOD Description: This changes the default logo in the top-left-hand corner your board. 
## MOD Version: 1.0.2 
## 
## Installation Level: Easy 
## Installation Time: 2 Minutes 
## Files To Edit: overall_header.tpl 
## Included Files: (n/a, or list of included/required files) 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/ 
############################################################## 
##
## Author Notes: 
## This is a very simple MOD, but I've seen it been asked so many times, I decided to 
## write one.  You may need some HTML skill to edit the height and width of your own logo,
## if necessary.
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/overall_header.tpl

# 
#-----[ FIND ]------------------------------------------ 
# (around line 231)
<img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" />

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
# Change the:  "your_logo_name_here.ext"  to point to your logo.  Leave the rest alone.
#
<img src="templates/subSilver/images/your_logo_name_here.ext" border="0" alt="{L_INDEX}" vspace="1" />

#
#-----[ SAVE/UPLOAD ALL FILES ]---------------------------------------------------------
#
# EoM
Und jetzt? Soll ich "overall_header.tpl" jetzt selbst öffnen und nach den entsprechenden Stellen suchen und ersetzen? Gibt es dafür ein Zusatzprogramm, das mir die Arbeit abnimmt?

Unter www.phpbb.com steht bei MODs Docs:
"All the details about using the phpBB database abstration layer will be here shortly"

Toll :-/

Ein verwirrter Catbytes...

Verfasst: 30.01.2003 07:15
von flex001
isch doch ganz einfach ..... file öffnen --> text suchen --> text ersetzten/hinzufügen --> fertig!!!!
Das bekomm sogar ich noch hin, wobei es bei großen mods ganz schön zeit- und nervenaufwendig werden kann :D bin gestern selber fast 3 Stunden an so was gehockt .... und dabei ist das nur copy- und pastearbeit

Verfasst: 30.01.2003 09:00
von Catbytes
flex001 hat geschrieben:isch doch ganz einfach ..... file öffnen --> text suchen --> text ersetzten/hinzufügen --> fertig!!!!
Wenn man es weiß, ist alles einfach :D

Trotzdem danke!

Ich hatte es ja vermutet, konnte es mir aber fast nicht vorstellen, daß in unserer digitalisierten Welt dafür kein Prog existiert.

Also Handarbeit :-?