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
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...