[Mediawiki-l] Topi, User passwords, pleaaase help

Rotem Liss mail at rotemliss.com
Mon Jun 5 12:52:57 UTC 2006


tomas pelak wrote:

> thanx for answering but,
>  
> 1. is there a possibility somehow get this passwords? even when they 
> are encrypted? to get some list of then?

No.

>  
> 2. i change settings in localsettings.php, i implement code lines:
>  
> $wgGroupPermissions['*']['move']            = true;
> $wgGroupPermissions['*']['read']            = true;
> $wgGroupPermissions['*']['edit']            = true;
> $wgGroupPermissions['*']['createpage']      = true;
> $wgGroupPermissions['*']['createtalk']      = true;
> $wgGroupPermissions['*']['talk']            = true;
> $wgGroupPermissions['*']['upload']          = true;
> $wgGroupPermissions['*']['reupload']        = true;
> $wgGroupPermissions['*']['reupload-shared'] = true;
> $wgGroupPermissions['*']['minoredit']       = true;
>  
>  
> cause i want that unregistred users could make all changes, and what 
> is important to upload files, i restarted apache, and refreshed but 
> when i click on upload file i get message: not logged in, what should 
> i do??? pls help

As for uploading, it's indeed a bug should be fixed, that even if you 
allow anonymous users to upload, they are blocked from doing that. 
"minoredit" and "move" work, but not "upload".

By the way:

    * "talk" is not a permission and you shouldn't specify it.
    * You shouldn't specify the permissions that the anonymous users
      already have.

So you can make your list shorter:

$wgGroupPermissions['*']['move']            = true;
$wgGroupPermissions['*']['upload']          = true;
$wgGroupPermissions['*']['reupload']        = true;
$wgGroupPermissions['*']['reupload-shared'] = true;
$wgGroupPermissions['*']['minoredit']       = true;

It will cause the same result.

-- 
#define Name RotemLiss
#define Mail mailSTRUDELrotemlissDOTcom
#define Site www.rotemliss.com



More information about the MediaWiki-l mailing list