dan führe folgendes bei den kopierten dateien aus(EMC):
Code: Alles auswählen
##############################################################
## MOD Title: mod_title_goes_here
## MOD Author: Patrik < patrik@working-sheepdogs.at > (Patrik Sporeni) http://warland.funpic.de/
## MOD Description: some_description_goes_here
## MOD Version: 1.0.0
##
## Installation Level: easy
## Installation Time: x Minutes
## Files To Edit:
## Included Files: n/a
## Generator: phpBB2 Mod Maker 0.1.67
##############################################################
## 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:
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ SQL ]------------------------------------------
#
CREATE TABLE `your_db_name`.`config2` (
`config_name` varchar( 255 ) NOT NULL default '',
`config_value` varchar( 255 ) NOT NULL default '',
PRIMARY KEY ( `config_name` )
) TYPE = MYISAM ;
INSERT INTO `your_db_name`.`config2`
SELECT *
FROM `your_db_name`.`config` ;
#
#-----[ OPEN ]------------------------------------------
#
includes/constants.php
#
#-----[ FIND ]------------------------------------------
#
define('CONFIG_TABLE', $table_prefix.'config');
#
#-----[ REPLACE WITH ]------------------------------------------
#
define('CONFIG_TABLE', $table_prefix.'config2');
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoMdas Forum greift auf dieselben daten zurück nur, das die konfigurationseinstellungen aus der config2 geladen werden, da jedes forum eine andere konfiguration hat.