vote up 0 vote down star

I'm trying to write a script that will create a user in MediaWiki, so that I can run a batch job to import a series of users.

I'm using mediawiki-1.12.0.

I got this code from a forum, but it doesn't look like it works with 1.12 (it's for 1.13)

$name = 'Username'; #Username (MUST start with a capital letter)
$pass = 'password'; #Password (plaintext, will be hashed later down)
$email = 'email';   #Email (automatically gets confirmed after the creation process)
$path = "/path/to/mediawiki";
putenv( "MW_INSTALL_PATH={$path}" );
require_once( "{$path}/includes/WebStart.php" );
$pass = User::crypt( $pass );
$user = User::createNew( $name, array( 'password' => $pass, 'email' => $email ) );
$user->confirmEmail();
$user->saveSettings();  
$ssUpdate = new SiteStatsUpdate( 0, 0, 0, 0, 1 );
$ssUpdate->doUpdate();

Thanks!

flag

67% accept rate

2 Answers

vote up 2 vote down check

There's a createAndPromote script in maintenance/ which creates user accounts and grants administrator rights. You could adapt this to remove the permissions portion.

Alternatively, you might take a look at the ImportUsers extension.

link|flag
vote up 0 vote down

Same problem here, I use the same piece of code and get the following error:

Fatal error: Call to a member function incr() on a non-object in /path2wiki/includes/GlobalFunctions.php on line 1709

Here the code that matters:

/** * Increment a statistics counter */ function wfIncrStats( $key ) { global $wgMemc; $key = wfMemcKey( 'stats', $key ); if ( is_null( $wgMemc->incr( $key ) ) ) { <<<<< Problem with $wgMemc $wgMemc->add( $key, 1 ); } }

I cannot find any line with "new" and "wgMemc" (case insensitive) in the source, is there a way to hack this code to make it work as expected ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.