MediaWiki: How to totally prevent anonymous users from register?prevent trap from altering underscore variable $_prevent bash completion from altering underscore variable $_How do I get a variable's value from one script and import it in another script?How do I write a Bash script that will ask users to define a variable?How to remove php7 completely from centos 6?sed - calling a variable from a file with multilineHow to download all images with the full resolution (i.e. svg) from a single wikipedia articleHow to print the version of a specific MediaWiki installation to terminalHow to prevent parameter expansion around a variable I want to be resolved?MediaWiki: How to totally delete a user after creating it (just for practice)?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
What are these boxed doors outside store fronts in New York?
Calculus Optimization - Point on graph closest to given point
Concept of linear mappings are confusing me
I probably found a bug with the sudo apt install function
Could a US political party gain complete control over the government by removing checks & balances?
Can you lasso down a wizard who is using the Levitate spell?
Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).
Circuitry of TV splitters
Infinite past with a beginning?
Chess with symmetric move-square
Why CLRS example on residual networks does not follows its formula?
Are tax years 2016 & 2017 back taxes deductible for tax year 2018?
What do you call a Matrix-like slowdown and camera movement effect?
Japan - Plan around max visa duration
Email Account under attack (really) - anything I can do?
Can town administrative "code" overule state laws like those forbidding trespassing?
Banach space and Hilbert space topology
How do I create uniquely male characters?
What is the offset in a seaplane's hull?
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
New order #4: World
If Manufacturer spice model and Datasheet give different values which should I use?
The magic money tree problem
MediaWiki: How to totally prevent anonymous users from register?
prevent trap from altering underscore variable $_prevent bash completion from altering underscore variable $_How do I get a variable's value from one script and import it in another script?How do I write a Bash script that will ask users to define a variable?How to remove php7 completely from centos 6?sed - calling a variable from a file with multilineHow to download all images with the full resolution (i.e. svg) from a single wikipedia articleHow to print the version of a specific MediaWiki installation to terminalHow to prevent parameter expansion around a variable I want to be resolved?MediaWiki: How to totally delete a user after creating it (just for practice)?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I've installed MediaWiki aiming to create some one-man-editing Wiki (anyone can read it).
I went through the documentation but I found no variable that controls whether anonymous users can create an account or not.
Do you know how can one totally disable the option to create an accounts?
variable mediawiki
add a comment |
I've installed MediaWiki aiming to create some one-man-editing Wiki (anyone can read it).
I went through the documentation but I found no variable that controls whether anonymous users can create an account or not.
Do you know how can one totally disable the option to create an accounts?
variable mediawiki
add a comment |
I've installed MediaWiki aiming to create some one-man-editing Wiki (anyone can read it).
I went through the documentation but I found no variable that controls whether anonymous users can create an account or not.
Do you know how can one totally disable the option to create an accounts?
variable mediawiki
I've installed MediaWiki aiming to create some one-man-editing Wiki (anyone can read it).
I went through the documentation but I found no variable that controls whether anonymous users can create an account or not.
Do you know how can one totally disable the option to create an accounts?
variable mediawiki
variable mediawiki
edited 2 days ago
JohnDoea
asked Apr 4 at 13:50
JohnDoeaJohnDoea
6011137
6011137
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've gone through this a few times and you have a couple options. None of these alone will solve all of your fake user issues, but together they will go a long way. Before we about disabling accounts, let's talk about prevention (because you will get more fake accounts in the future). This page has a lot of good information in regards to this topic, but I'll highlight a few things that helped me specifically.
Make sure you add a captcha
Adding a required captcha or re-captcha to a media wiki will help with bots, but less with people spamming the site. I noticed when I added this I saw a large downturn in fake users. Eventually though, they picked back up because real-people began adding to the site.Email validation
If you're running a more personal media wiki (for example, a research lab) it may be practical to have users admins authenticate additional users. Of course, this isn't practical if this is a general media wiki site. You can also enable email validation for the users themselves. You'd be suprised how far you can go with requiring users to put in a valid email.Password Security
You can require that your password be very specfic in order to combat bot usage that many times have a specfic combination of letters and numbers for their generated passwords. Plus, you can set password expirations to help with bots that are stateless.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510511%2fmediawiki-how-to-totally-prevent-anonymous-users-from-register%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've gone through this a few times and you have a couple options. None of these alone will solve all of your fake user issues, but together they will go a long way. Before we about disabling accounts, let's talk about prevention (because you will get more fake accounts in the future). This page has a lot of good information in regards to this topic, but I'll highlight a few things that helped me specifically.
Make sure you add a captcha
Adding a required captcha or re-captcha to a media wiki will help with bots, but less with people spamming the site. I noticed when I added this I saw a large downturn in fake users. Eventually though, they picked back up because real-people began adding to the site.Email validation
If you're running a more personal media wiki (for example, a research lab) it may be practical to have users admins authenticate additional users. Of course, this isn't practical if this is a general media wiki site. You can also enable email validation for the users themselves. You'd be suprised how far you can go with requiring users to put in a valid email.Password Security
You can require that your password be very specfic in order to combat bot usage that many times have a specfic combination of letters and numbers for their generated passwords. Plus, you can set password expirations to help with bots that are stateless.
add a comment |
I've gone through this a few times and you have a couple options. None of these alone will solve all of your fake user issues, but together they will go a long way. Before we about disabling accounts, let's talk about prevention (because you will get more fake accounts in the future). This page has a lot of good information in regards to this topic, but I'll highlight a few things that helped me specifically.
Make sure you add a captcha
Adding a required captcha or re-captcha to a media wiki will help with bots, but less with people spamming the site. I noticed when I added this I saw a large downturn in fake users. Eventually though, they picked back up because real-people began adding to the site.Email validation
If you're running a more personal media wiki (for example, a research lab) it may be practical to have users admins authenticate additional users. Of course, this isn't practical if this is a general media wiki site. You can also enable email validation for the users themselves. You'd be suprised how far you can go with requiring users to put in a valid email.Password Security
You can require that your password be very specfic in order to combat bot usage that many times have a specfic combination of letters and numbers for their generated passwords. Plus, you can set password expirations to help with bots that are stateless.
add a comment |
I've gone through this a few times and you have a couple options. None of these alone will solve all of your fake user issues, but together they will go a long way. Before we about disabling accounts, let's talk about prevention (because you will get more fake accounts in the future). This page has a lot of good information in regards to this topic, but I'll highlight a few things that helped me specifically.
Make sure you add a captcha
Adding a required captcha or re-captcha to a media wiki will help with bots, but less with people spamming the site. I noticed when I added this I saw a large downturn in fake users. Eventually though, they picked back up because real-people began adding to the site.Email validation
If you're running a more personal media wiki (for example, a research lab) it may be practical to have users admins authenticate additional users. Of course, this isn't practical if this is a general media wiki site. You can also enable email validation for the users themselves. You'd be suprised how far you can go with requiring users to put in a valid email.Password Security
You can require that your password be very specfic in order to combat bot usage that many times have a specfic combination of letters and numbers for their generated passwords. Plus, you can set password expirations to help with bots that are stateless.
I've gone through this a few times and you have a couple options. None of these alone will solve all of your fake user issues, but together they will go a long way. Before we about disabling accounts, let's talk about prevention (because you will get more fake accounts in the future). This page has a lot of good information in regards to this topic, but I'll highlight a few things that helped me specifically.
Make sure you add a captcha
Adding a required captcha or re-captcha to a media wiki will help with bots, but less with people spamming the site. I noticed when I added this I saw a large downturn in fake users. Eventually though, they picked back up because real-people began adding to the site.Email validation
If you're running a more personal media wiki (for example, a research lab) it may be practical to have users admins authenticate additional users. Of course, this isn't practical if this is a general media wiki site. You can also enable email validation for the users themselves. You'd be suprised how far you can go with requiring users to put in a valid email.Password Security
You can require that your password be very specfic in order to combat bot usage that many times have a specfic combination of letters and numbers for their generated passwords. Plus, you can set password expirations to help with bots that are stateless.
answered Apr 4 at 14:16
juicedatomjuicedatom
1363
1363
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510511%2fmediawiki-how-to-totally-prevent-anonymous-users-from-register%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown