[gentoo-user] mediawiki package stability

2006-10-12 Thread Trenton Adams

Anyone know the stability of the 1.7.1 package?

FYI, I'm running amd64, which probably does not matter.

Thanks.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] mediawiki mass installation

2006-08-27 Thread Jure Varlec
On Sunday 27 August 2006 15:06, Enrico Weigelt wrote:
> Hi folks,
>
> does anyone have some tool for mediawiki mass installations,
> which does an completely automatic (non-interactive) mediawiki
> installation from some configfile ?
>
> It also would be fine, if this tool could move the non-individual
> parts (ie. program code, stylesheets, ...) to some common place,
> so save some space.

AFAIK Gentoo's webapp-config does these things, but I've only managed to 
scratch the surface of what it's capable of since I don't use webapps much. 
If you have multiple physical servers to maintain, you could emerge 
mediawiki, install it with webapp-config and write a simple script which 
executes posti-install instructions and modifies config files so you don't 
have to do it manually on each server. After that, upgrades are handled with 
webapp-config.
-- 
Jure Varlec


pgpicQey89j7V.pgp
Description: PGP signature


[gentoo-user] mediawiki mass installation

2006-08-27 Thread Enrico Weigelt

Hi folks,

does anyone have some tool for mediawiki mass installations, 
which does an completely automatic (non-interactive) mediawiki
installation from some configfile ?

It also would be fine, if this tool could move the non-individual
parts (ie. program code, stylesheets, ...) to some common place,
so save some space.


thx
-- 
-
 Enrico Weigelt==   metux IT service - http://www.metux.de/
-
 Please visit the OpenSource QM Taskforce:
http://wiki.metux.de/public/OpenSource_QM_Taskforce
 Patches / Fixes for a lot dozens of packages in dozens of versions:
http://patches.metux.de/
-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Mediawiki

2006-04-24 Thread Sergio Polini
Ric de France:
> Hi Sergio,
>
> On 4/22/06, Sergio Polini <[EMAIL PROTECTED]> wrote:
> > Then I got the error "Sorry! The wiki is experiencing some
> > technical difficulties, and cannot contact the database server".
> > As far I can understand, this happens because of the new password
> > algorithm in mysql 4.1+, so I've remerged dev-lang/php with the
> > "mysqli" flag, but I still get the same error.
>
> From what I remember, I think I got something similar to you...
> what I think I did was:
> a) Start up mysql - something like: /etc/init.d/mysql start
> b) Check to see if the encryption level you're using is correct -
> Mediawiki was written in an older version of PHP, and does not use
> the same authentication as the latest and greatest of mysql. In
> /etc/mysql/my.cnf add the line "old_passwords" to the file in the
> "[mysqld]" section... it seemed to make it work...
> c) Check:
> http://meta.wikimedia.org/wiki/Help:Running_MediaWiki_on_Gentoo_Lin
>ux - this page is a little out of date. If you use PHP5, you don't
> need mod_php (well I didn't)...

Thanks! As soon as possibile, I'll give Mediawiki another try ;-)

Sergio


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Mediawiki

2006-04-23 Thread Ric de France
Hi Sergio,

On 4/22/06, Sergio Polini <[EMAIL PROTECTED]> wrote:
> Then I got the error "Sorry! The wiki is experiencing some technical
> difficulties, and cannot contact the database server".
> As far I can understand, this happens because of the new password
> algorithm in mysql 4.1+, so I've remerged dev-lang/php with the
> "mysqli" flag, but I still get the same error.

>From what I remember, I think I got something similar to you... what I
think I did was:
a) Start up mysql - something like: /etc/init.d/mysql start
b) Check to see if the encryption level you're using is correct -
Mediawiki was written in an older version of PHP, and does not use the
same authentication as the latest and greatest of mysql. In
/etc/mysql/my.cnf add the line "old_passwords" to the file in the
"[mysqld]" section... it seemed to make it work...
c) Check: http://meta.wikimedia.org/wiki/Help:Running_MediaWiki_on_Gentoo_Linux
- this page is a little out of date. If you use PHP5, you don't need
mod_php (well I didn't)...

HTH,

...Ric

--
Ric de France
Ph: +61412945554 (international) or 0412945554 (Australia)
== Do you, uh... Gentoo? Gent-hooo!! ==

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Mediawiki

2006-04-21 Thread Sergio Polini
I can't install Mediawiki 1.4.15.
I've installed:
a) apache 2.0.55-r1
b) dev-lang/php 5.1.2 (current flags in /etc/portage/package.use: dba 
gd -gd-external pcre mysql mysqli session)
c) mysql 4.1.14-r1

I got the error "Specified key was too long; max key length is 1000 
bytes" when creating the categorylinks table, so I've esecuted
"ALTER DATABASE wikidb DEFAULT CHARACTER SET latin1 COLLATE 
latin1_general_ci".

Then I got the error "Sorry! The wiki is experiencing some technical 
difficulties, and cannot contact the database server".
As far I can understand, this happens because of the new password 
algorithm in mysql 4.1+, so I've remerged dev-lang/php with the 
"mysqli" flag, but I still get the same error.

Does anybody know how to get mediawiki installed?

Thanks
Sergio
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] mediawiki: Enabling uploads?

2006-04-07 Thread Michael Gisbers
Am Freitag, 7. April 2006 14:32 schrieb Alexander Skwar:
> Hello!
>
> For my wiki site, I'd like to enable uploads. To do so, I
> *added* lines
>
> $wgDisableUpload = false;
> $wgDisableUploads = false;
>
> to my LocalSettings.php.
>
> [..]

In mediawiki 1.5.x this parameter has been reversed. So just try:

## To enable image uploads, make sure the 'images' directory
## is writable, then uncomment this:
$wgEnableUploads= true;

;-)
-- 
 Michael Gisbers
 http://www.lugor.de

[ Printed on recycled electrons ]


pgpUWA0JyZ2n2.pgp
Description: PGP signature


Re: [gentoo-user] mediawiki: Enabling uploads?

2006-04-07 Thread Max Lorenz
Hi,

On 4/7/06, Alexander Skwar <[EMAIL PROTECTED]> wrote:
> Hello!
>
> For my wiki site, I'd like to enable uploads. To do so, I
> *added* lines
>
> $wgDisableUpload = false;
> $wgDisableUploads = false;
>
> to my LocalSettings.php.

>From >=1.5 it's the other way around, like so:
$wgEnableUploads = true;

see:
http://www.mediawiki.org/wiki/Configuring_file_uploads


> Alexander Skwar
Max

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] mediawiki: Enabling uploads?

2006-04-07 Thread Alexander Skwar
Hello!

For my wiki site, I'd like to enable uploads. To do so, I
*added* lines

$wgDisableUpload = false;
$wgDisableUploads = false;

to my LocalSettings.php.

But I still cannot upload - the wiki is telling me

Upload file

Sorry, uploading is disabled.

How do I enable uploads?

I'm using mediawiki 1.5.8, "compiled" with the following
flags:

hetzner wiki # emerge -vpt mediawiki

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
[ebuild   R   ] www-apps/mediawiki-1.5.8  USE="imagemagick vhosts -math" 0 kB

Thanks a lot,

Alexander Skwar
-- 
When neither their poverty nor their honor is touched, the majority of men
live content.
-- Niccolo Machiavelli
-- 
gentoo-user@gentoo.org mailing list