Seite 1 von 1

Forenzugangskontrolle per Default auf "registriert"

Verfasst: 10.01.2006 09:56
von farbauti
Hallo,

ich bin gerade am Einrichten meines Forums und hätte gleich mal eine Newbie-Frage:
Wenn ich neue Foren hinzufüge, werden diese immer als öffentlich angelegt.
Wie/wo kann ich einstellen, dass neue Foren gleich mit den Befugnissen "registriert" angelegt werden?

Gruß, Tom.
Edit: Ach ja, ich habe phpBB v2.0.19 …

Verfasst: 10.01.2006 10:04
von Bonaparte
in der datei
admin/admin_forums.php
findest du ab zeile 39 (+-)

Code: Alles auswählen

$forum_auth_ary = array(
	"auth_view" => AUTH_ALL, 
	"auth_read" => AUTH_ALL, 
	"auth_post" => AUTH_ALL, 
	"auth_reply" => AUTH_ALL, 
	"auth_edit" => AUTH_REG, 
	"auth_delete" => AUTH_REG, 
	"auth_sticky" => AUTH_MOD, 
	"auth_announce" => AUTH_MOD, 
	"auth_vote" => AUTH_REG, 
	"auth_pollcreate" => AUTH_REG
);
Das kannst du dann entsprechend bearbeiten.

Ich nehme mal an so müsste es aussehen (änderung bei auth_post und auth_reply)

Code: Alles auswählen

$forum_auth_ary = array(
	"auth_view" => AUTH_ALL, 
	"auth_read" => AUTH_ALL, 
	"auth_post" => AUTH_REG, 
	"auth_reply" => AUTH_REG, 
	"auth_edit" => AUTH_REG, 
	"auth_delete" => AUTH_REG, 
	"auth_sticky" => AUTH_MOD, 
	"auth_announce" => AUTH_MOD, 
	"auth_vote" => AUTH_REG, 
	"auth_pollcreate" => AUTH_REG
);

Danke!

Verfasst: 11.01.2006 12:16
von farbauti
Hallo,

ich hab's gestern ausprobiert, und das war genau die richtige Codestelle.

Besten Dank!

Gruß, Tom.