Group admin

Probleme bei der regulären Arbeiten mit phpBB, Fragen zu Vorgehensweisen oder Funktionsweise sowie sonstige Fragen zu phpBB im Allgemeinen.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
berni23
Mitglied
Beiträge: 79
Registriert: 10.10.2005 15:58

Group admin

Beitrag von berni23 »

Wie kan ich jemanden zum group admin(nicht mod) ernennen?
Er sollte alle Rechte, wie Gruppen erstellen, löschen, umbennenen, haben.

Brauche ich dafür einen Mod?

Kann er mir in die normalle Administration reinpfuschen?

Besten Dank im Voraus und Gruss.
BB-BF-BM
Mitglied
Beiträge: 2179
Registriert: 28.10.2005 16:38
Wohnort: Essen

Beitrag von BB-BF-BM »

MODL:JuniorAdmin
HdZ

Beitrag von HdZ »

Oder "Moderator CP" installen und die admin_groups verwenden.

Und, ja er könnte dann alle Gruppen verwalten die du im Board hast, egal ob ModCP oder JuniorAdmin.
berni23
Mitglied
Beiträge: 79
Registriert: 10.10.2005 15:58

Beitrag von berni23 »

Super! Besten Dank!
berni23
Mitglied
Beiträge: 79
Registriert: 10.10.2005 15:58

Beitrag von berni23 »

Ich habe Moderator CP installiert aber im Mod Panel kann ich keine Group
Admin sehen.

Was muss ich tun um jemanden die Administration aller Gruppen zu überlassen?
Benutzeravatar
silva07
Mitglied
Beiträge: 302
Registriert: 25.02.2006 01:23
Wohnort: Saarland

Beitrag von silva07 »

Dazu musst du die admin_groups.php umschreiben.
berni23
Mitglied
Beiträge: 79
Registriert: 10.10.2005 15:58

Beitrag von berni23 »

Gibt es dafür irgendwo eine Anleitung?
Oder ist es so kurz dass du es eventuell hier posten könntest?
Benutzeravatar
silva07
Mitglied
Beiträge: 302
Registriert: 25.02.2006 01:23
Wohnort: Saarland

Beitrag von silva07 »

##############################################################
## MOD Title: How to add new Modules
## MOD Author: kooky < [nospam]kooky@altern.org > (n/a) http://www.myphpbb.zaup.org/
## MOD Author: Milkman < milkman@web-milk.co.uk > (Phill Sparks) http://www.lsucs.com/
## MOD Description: Explains how to add new modules for the Moderator CP.
## MOD Version: 1.0.4
##
## Installation Level: Easy
## Installation Time: 2 minutes
## Files To Edit: 2
## modcp/admin_xxx.php
## templates/subSilver/admin/modcp_config_body.tpl
## Included Files: N/A
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## How to, for understanding purpose.
##
## Legend:
## -------
## - name_of_your_file = xxx
## - NAME_OF_YOUR_CATEGORY = CAT
## - NAME_OF_YOUR_MODULE = MOD
##
##############################################################
## MOD History:
##
## 2005/11/26 - Version 1.0.4
## - Updated to match the Moderator CP version 1.1.1
##
## 2005/08/24 - Version 1.0.3 (Milkman)
## - Updated to match the Moderator CP version 1.1.0
##
## 2005/07/25 - Version 1.0.2
## - Updated to match the Moderator CP version 1.0.10
##
## 2004/12/28 - Version 1.0.1
## - Updated to match the Moderator CP version 1.0.7
##
## 2004/09/09 - Version 1.0.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ COPY ]------------------------------------------
#
copy root/admin/admin_xxx.php to modcp/admin_xxx.php
copy root/templates/subSilver/admin/xxx_body.tpl to templates/subSilver/modcp/xxx_body.tpl

#
#-----[ OPEN ]------------------------------------------
#
modcp/admin_xxx.php

#
#-----[ FIND ]------------------------------------------
# each time you have
# $module['CAT']['MOD'] = $filename;
#
$module['CAT']['MOD'] = $filename;
#
#-----[ REPLACE WITH ]------------------------------------------
#
if (check_perms('CAT', 'MOD'))
$modcp_module['CAT']['MOD'] = $filename;

#
#-----[ FIND ]------------------------------------------
#
$phpbb_root_path = './../';
require($phpbb_root_path . 'extension.inc');
require('./pagestart.' . $phpEx);

#
#-----[ AFTER ADD ]------------------------------------------
# If you have more than one module item you'll need to add
# more of these blocks, and check for the $module too.
#
// Enable/disable the Module
if (!check_perms('CAT', 'MOD'))
{
// End of Activation
$message = $lang['Module_disabled'] . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid('index.' . $phpEx . '?pane=right') . '">', '</a>');
message_die(GENERAL_MESSAGE, $message);
}

#
#-----[ FIND ]------------------------------------------
# each time you have admin/xxx_body.tpl
#
"body" => "admin/xxx_body.tpl"
#
#-----[ REPLACE WITH ]------------------------------------------
#
'body' => 'modcp/xxx_body.tpl'
#
#-----[ FIND ]------------------------------------------
# each time you have page_footer_admin
#
include('./page_footer_admin.'.$phpEx);
#
#-----[ REPLACE WITH ]------------------------------------------
#
include('./page_footer_mod.' . $phpEx);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
berni23
Mitglied
Beiträge: 79
Registriert: 10.10.2005 15:58

Beitrag von berni23 »

Thanx!
Wo kann ich die files und die Anleitung finden?
Benutzeravatar
Slytherin
Mitglied
Beiträge: 1771
Registriert: 11.03.2005 17:52
Wohnort: Hogwarts
Kontaktdaten:

Beitrag von Slytherin »

Such mal auf phpbbhacks.com.

Slytherin
Antworten

Zurück zu „phpBB 2.0: Administration, Benutzung und Betrieb“