Page 1 of 1

Block Guests from page Creation

Posted: Tue Mar 26, 2013 12:36 pm
by Rava

Re: Block Guests from page Creation

Posted: Tue Mar 26, 2013 1:13 pm
by Misogi
You can also block anonymous users, and a good part of vandalism is done by them.

One month for this guy, BTW.

Send a PM if someone does that again.

Re: Block Guests from page Creation

Posted: Tue Mar 26, 2013 1:35 pm
by Rava
I realize that. (And thanks for the temp ban.) What I meant was, could page creation be globally disabled if you are not registered? Or is that not possible without blocking all edit capabilities?

IP banning only goes so far considering people can use alternative means to get a totally different IP.

Re: Block Guests from page Creation

Posted: Wed Mar 27, 2013 9:41 am
by Misogi
Rava wrote:I realize that. (And thanks for the temp ban.) What I meant was, could page creation be globally disabled if you are not registered? Or is that not possible without blocking all edit capabilities?

IP banning only goes so far considering people can use alternative means to get a totally different IP.
I think it's possible, but I don't know why it wasn't disabled.

IP banning isn't perfect, but well, it works for now.

By the way, that guy was banned for one year, instead of one month, it was changed last night.

Re: Block Guests from page Creation

Posted: Wed Mar 27, 2013 8:29 pm
by TaitoMagatsu
If I remember correctly you can Semi-Protect articles (which makes it so only a certain predefined group of users can edit it), or Protect them (which makes it only Admin-editable or so).

You can also set which rights the anonymous user has, and which does every kind of user have too (Admin, Buroucrats, bots, normalUsers, etc). That would help with the blank page-creation thing and with mostly everything. The file which you edited to customize these things was called somthing like LocalSetting.php or st like that.

It has been a long time since I last used MediaWiki, but I hope this helps.

Re: Block Guests from page Creation

Posted: Thu Mar 28, 2013 11:53 am
by Misogi
Only admins can set these settings, though.

Re: Block Guests from page Creation

Posted: Thu Mar 28, 2013 3:31 pm
by Lery
You can prevent anonymous users to create page, you were right : you have to edit the "LocalSettings.php" file and check that this is so:

Code: Select all

$wgGroupPermissions['*']['createpage'] = false;
(I guess it's setted true at the moment, which isn't optimal, as you said.)

But then it means only a real wiki über-admin, with FTP access, can do so, maybe even only TLG... :wink:

Re: Block Guests from page Creation

Posted: Thu Mar 28, 2013 3:41 pm
by KuroiHikari
Anonymous users can't create normal pages. Seems like they can do so for Talk pages.

Re: Block Guests from page Creation

Posted: Thu Mar 28, 2013 3:44 pm
by Lery
Ah okay, I see. So it should be :

Code: Select all

$wgGroupPermissions['*']['createtalk'] = false;
instead of true ;)

Re: Block Guests from page Creation

Posted: Fri Mar 29, 2013 7:19 am
by Rava
Hmm, OK. That's pretty interesting to know.

Thanks everyone. :)

Re: Block Guests from page Creation

Posted: Sat Mar 30, 2013 9:41 am
by Mystes
Wait, doesn't it mean that anons wouldn't be able to contact a translator if the latter doesn't have a talk page yet? :\

Re: Block Guests from page Creation

Posted: Sun Apr 07, 2013 2:18 pm
by Lery
That would be the case, but it would be more consistent with the other permissions that anons currently have, wouldn't it? :|