Community Central
Community Central
(Created page with "{{Forumheader|General Discussion}} Is it possible to make a Wikia that only a select people can view that is restricted via login/password? <!-- Please put your content under t...")
 
(link to related discussion)
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
{{Forumheader|General Discussion}}
 
{{Forumheader|General Discussion}}
 
Is it possible to make a Wikia that only a select people can view that is restricted via login/password?
 
   
 
<!-- Please put your content under this line. Be sure to sign your edits with four tildes: ~~~~
 
<!-- Please put your content under this line. Be sure to sign your edits with four tildes: ~~~~
 
If you require staff help, please use Special:Contact or community@wikia.com to be sure of a staff reply. -->
 
If you require staff help, please use Special:Contact or community@wikia.com to be sure of a staff reply. -->
 
Is it possible to make a Wikia that only a select people can view that is restricted via login/password? {{unsigned|Ghickey75}}
  +
  +
:Wikia doesn't host private wikis. --{{User:PlasmaTime/SigReal|}} 16:50, June 22, 2012 (UTC)
  +
:::That somewhat goes against the whole definition of "wikia"... I think what you are after is a "website". Plenty of web hosts around. Wikia is a wiki site.<br />
  +
{{ri}}
  +
{{User:DarkMoonRising/sigreal.css|05:52, July 14, 2012}}
  +
  +
:No, it's not possible to restrict viewing of pages. Every page on a wiki is publicly viewable, so it's not even possible to have an "admin discussion area". However, it is possible to restrict editing of certain pages to admin-only. --[[user:user452|452]] 02:12, July 21, 2012 (UTC)
  +
  +
:: Just out of interest, isn't it possible to use the <code>wgUserGroups</code> variable to limit administrators and above to view pages? Something like:
  +
<source lang="javascript">
  +
$(document).ready(function() {
  +
if (wgUserGroups == "sysop" || wgUserGroups == "bureaucrat" || wgUserGroups == "helper" || wgUserGroups == "staff") $(".WikiaMainContent").css("display","block");
  +
else $(".WikiaMainContent").html("This page cannot be viewed by non-sysop users.");
  +
});
  +
</source>
  +
:: {{User|MateyY}} 02:48, July 21, 2012 (UTC)
  +
  +
:::Disregarding the part where hindering people from viewing a page is likely against the Terms of Use, someone could just disable JavaScript in their browser, or use [[Special:Export]] or any number of tricks to view the page. {{User:Mathmagician/sig|02:53 UTC|Sat|21 July 2012}}
  +
:::: I understand; thank you for answering. {{User|MateyY}} 02:57, July 21, 2012 (UTC)
  +
:::I was going to say the same thing as Mathmagician. While it looks like wgUserGroups is useful for adding relevant links for admins, it's not possible to use to to securely hide something, as Javascript is a client-side script. Related discussion: [[Forum:User rights check for displaying content]] --[[user:user452|452]] 02:59, July 21, 2012 (UTC)

Latest revision as of 02:59, 21 July 2012

Forums: Index General Discussion Private wikia's
Fandom's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
Archive
Note: This topic has been unedited for 4289 days. It is considered archived - the discussion is over. Information in this thread may be out of date. Do not add to unless it really needs a response.

Is it possible to make a Wikia that only a select people can view that is restricted via login/password? —This unsigned comment is by Ghickey75 (wallcontribs). Please sign your comments by adding "~~~~" in the source editor.

Wikia doesn't host private wikis. -- 16:50, June 22, 2012 (UTC)
That somewhat goes against the whole definition of "wikia"... I think what you are after is a "website". Plenty of web hosts around. Wikia is a wiki site.

(Reset indent) Dollars_small.pngDarkMoonRisingtalkcontribs05:52, July 14, 2012.

No, it's not possible to restrict viewing of pages. Every page on a wiki is publicly viewable, so it's not even possible to have an "admin discussion area". However, it is possible to restrict editing of certain pages to admin-only. --452 02:12, July 21, 2012 (UTC)
Just out of interest, isn't it possible to use the wgUserGroups variable to limit administrators and above to view pages? Something like:
$(document).ready(function() {
     if (wgUserGroups == "sysop" || wgUserGroups == "bureaucrat" || wgUserGroups == "helper" || wgUserGroups == "staff") $(".WikiaMainContent").css("display","block");
     else $(".WikiaMainContent").html("This page cannot be viewed by non-sysop users.");
});


MateyY (talkcontribs) 02:48, July 21, 2012 (UTC)

Disregarding the part where hindering people from viewing a page is likely against the Terms of Use, someone could just disable JavaScript in their browser, or use Special:Export or any number of tricks to view the page. 20px_Rin_Tohsaka_Avatar.png Mathmagician ƒ(♫) 02:53 UTC, Sat, 21 July 2012
I understand; thank you for answering.


MateyY (talkcontribs) 02:57, July 21, 2012 (UTC)

I was going to say the same thing as Mathmagician. While it looks like wgUserGroups is useful for adding relevant links for admins, it's not possible to use to to securely hide something, as Javascript is a client-side script. Related discussion: Forum:User rights check for displaying content --452 02:59, July 21, 2012 (UTC)