Hi,
I have created a wiki without user registration enabled.
How do I (re)enable and disable user registration ?
Also how do I sign up new users on a restricted access wiki with no user self registration ?
Many thanks in advance,
Aaron
On Tue, Apr 3, 2012 at 2:40 PM, Aaron Gray aaronngray.lists@gmail.com wrote:
How do I (re)enable and disable user registration ?
In LocalSettings.php, remove the line "$wgGroupPermissions['*']['createaccount'] = false;" or change "false" to "true". See http://www.mediawiki.org/wiki/Manual:Preventing_access#Restrict_account_crea... for more information.
On 3 April 2012 20:11, Benjamin Lees emufarmers@gmail.com wrote:
On Tue, Apr 3, 2012 at 2:40 PM, Aaron Gray aaronngray.lists@gmail.com wrote:
How do I (re)enable and disable user registration ?
In LocalSettings.php, remove the line "$wgGroupPermissions['*']['createaccount'] = false;" or change "false" to "true". See
http://www.mediawiki.org/wiki/Manual:Preventing_access#Restrict_account_crea... for more information.
Great, thanks a lot Benjamin :)
Regards,
Aaron
hi, .../index.php?title=Special:UserLogin&type=signup
you can create new accounts with a temporary password. every new registrated user should change this password.
best regards
-----Ursprüngliche Nachricht----- From: Aaron Gray Sent: Tuesday, April 03, 2012 8:40 PM To: MediaWiki announcements and site admin list Subject: [Mediawiki-l] How to allow user registration ?
Hi,
I have created a wiki without user registration enabled.
How do I (re)enable and disable user registration ?
Also how do I sign up new users on a restricted access wiki with no user self registration ?
Many thanks in advance,
Aaron _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On 4 April 2012 01:13, Support Simpsonspedia support@simpsonspedia.netwrote:
hi, .../index.php?title=Special:**UserLogin&type=signup
you can create new accounts with a temporary password. every new registrated user should change this password.
Thanks, that is useful !
Aaron
-----Ursprüngliche Nachricht----- From: Aaron Gray
Sent: Tuesday, April 03, 2012 8:40 PM To: MediaWiki announcements and site admin list Subject: [Mediawiki-l] How to allow user registration ?
Hi,
I have created a wiki without user registration enabled.
How do I (re)enable and disable user registration ?
Also how do I sign up new users on a restricted access wiki with no user self registration ?
Many thanks in advance,
Aaron ______________________________**_________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.**org MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/**mailman/listinfo/mediawiki-lhttps://lists.wikimedia.org/mailman/listinfo/mediawiki-l
______________________________**_________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.**org MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/**mailman/listinfo/mediawiki-lhttps://lists.wikimedia.org/mailman/listinfo/mediawiki-l
I finally upgraded to Mediawiki 1.18 and while doing so it broke an mp3 player extension I was using (Flashmp3:http://www.mediawiki.org/wiki/Extension:FlashMP3%C2%A0). It looks like the person is no longer updating the extension as I saw a similar problem posted on the discussion section of the site.
Since no one updating it anymore and the fact my wiki contains a lot of audio and it's crucial I get this working, I was hoping someone here might be able to help me.
The error is : "Fatal error: Class 'Image' not found".
for this piece of code: $img=function_exists('wfFindFile')? wfFindFile($title):newImage($title);
Anyone know what in the latest mediawiki would make this code return a fatal error?
Any help would be greatly appreciated.
Thank you,
Chris
On 09/04/12 10:54, Chris Lewis wrote:
I finally upgraded to Mediawiki 1.18 and while doing so it broke an mp3 player extension I was using (Flashmp3:http://www.mediawiki.org/wiki/Extension:FlashMP3 ). It looks like the person is no longer updating the extension as I saw a similar problem posted on the discussion section of the site.
Since no one updating it anymore and the fact my wiki contains a lot of audio and it's crucial I get this working, I was hoping someone here might be able to help me.
The error is : "Fatal error: Class 'Image' not found".
for this piece of code: $img=function_exists('wfFindFile')? wfFindFile($title):newImage($title);
Anyone know what in the latest mediawiki would make this code return a fatal error?
Any help would be greatly appreciated.
Thank you,
Chris
The image class was removed in 9c03e7f7baf7515e459594e7fe02040fe358df25 It had been only provided for code earlier than MediaWiki 1.11
It's really strange that you're hitting that error, since wfFindFile has existed since MediaWiki 1.7 (ed4303922f4e850418168595c2a22cdd895081cc) and the new Image path should never be executed.
I tested with both PHP 5.2 and 5.3 and they don't require an Image class at all in that case.
Anyway, just changing that line to $img= wfFindFile($title); should fix it.
Hi,
Thank you for replying. I changed the line $img = function_exists( 'wfFindFile' ) ? wfFindFile( $title ) : new Image( $title );
to
$img= wfFindFile($title);
and now when I hit the audio player it says "File not found." Unfortunately I don't know php and haven't been able to figure it out myself.
Thank you,
Chris
________________________________ From: Platonides Platonides@gmail.com To: mediawiki-l@lists.wikimedia.org Sent: Monday, April 9, 2012 10:14 PM Subject: Re: [Mediawiki-l] Upgraded but broke an extension
On 09/04/12 10:54, Chris Lewis wrote:
I finally upgraded to Mediawiki 1.18 and while doing so it broke an mp3 player extension I was using (Flashmp3:http://www.mediawiki.org/wiki/Extension:FlashMP3 ). It looks like the person is no longer updating the extension as I saw a similar problem posted on the discussion section of the site.
Since no one updating it anymore and the fact my wiki contains a lot of audio and it's crucial I get this working, I was hoping someone here might be able to help me.
The error is : "Fatal error: Class 'Image' not found".
for this piece of code: $img=function_exists('wfFindFile')? wfFindFile($title):newImage($title);
Anyone know what in the latest mediawiki would make this code return a fatal error?
Any help would be greatly appreciated.
Thank you,
Chris
The image class was removed in 9c03e7f7baf7515e459594e7fe02040fe358df25 It had been only provided for code earlier than MediaWiki 1.11
It's really strange that you're hitting that error, since wfFindFile has existed since MediaWiki 1.7 (ed4303922f4e850418168595c2a22cdd895081cc) and the new Image path should never be executed.
I tested with both PHP 5.2 and 5.3 and they don't require an Image class at all in that case.
Anyway, just changing that line to $img= wfFindFile($title); should fix it.
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Also changing the code back to the original no longer gives a fatal error. I'm confused. It's like it's ignoring it all the sudden now.
________________________________ From: Chris Lewis yecheondigital@yahoo.com To: MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Sent: Tuesday, April 10, 2012 2:26 AM Subject: Re: [Mediawiki-l] Upgraded but broke an extension
Hi,
Thank you for replying. I changed the line $img = function_exists( 'wfFindFile' ) ? wfFindFile( $title ) : new Image( $title );
to
$img= wfFindFile($title);
and now when I hit the audio player it says "File not found." Unfortunately I don't know php and haven't been able to figure it out myself.
Thank you,
Chris
________________________________ From: Platonides Platonides@gmail.com To: mediawiki-l@lists.wikimedia.org Sent: Monday, April 9, 2012 10:14 PM Subject: Re: [Mediawiki-l] Upgraded but broke an extension
On 09/04/12 10:54, Chris Lewis wrote:
I finally upgraded to Mediawiki 1.18 and while doing so it broke an mp3 player extension I was using (Flashmp3:http://www.mediawiki.org/wiki/Extension:FlashMP3 ). It looks like the person is no longer updating the extension as I saw a similar problem posted on the discussion section of the site.
Since no one updating it anymore and the fact my wiki contains a lot of audio and it's crucial I get this working, I was hoping someone here might be able to help me.
The error is : "Fatal error: Class 'Image' not found".
for this piece of code: $img=function_exists('wfFindFile')? wfFindFile($title):newImage($title);
Anyone know what in the latest mediawiki would make this code return a fatal error?
Any help would be greatly appreciated.
Thank you,
Chris
The image class was removed in 9c03e7f7baf7515e459594e7fe02040fe358df25 It had been only provided for code earlier than MediaWiki 1.11
It's really strange that you're hitting that error, since wfFindFile has existed since MediaWiki 1.7 (ed4303922f4e850418168595c2a22cdd895081cc) and the new Image path should never be executed.
I tested with both PHP 5.2 and 5.3 and they don't require an Image class at all in that case.
Anyway, just changing that line to $img= wfFindFile($title); should fix it.
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
mediawiki-l@lists.wikimedia.org