Re: [MediaWiki-l] unsubscribe links in the footer (admin help needed)

2014-07-08 Thread dsge herr
Unsubscribe link is https://lists.wikimedia.org/mailman/listinfo/mediawiki-l This is where I found it: http://i.imgur.com/61wmzDU.png 2014-07-08 9:04 GMT+02:00, Finne Boonen : > Tim Starling just told me there's no unsubscribe link in the footer of > these mails. Can a relevant admin add one? > >

Re: [MediaWiki-l] once more on https

2014-04-17 Thread dsge herr
Set $wgServer to a protocol relative url, e.g. $wgServer = "// www.univie.ac.at"; http://www.mediawiki.org/wiki/Manual:$wgServer 2014-04-17 14:59 GMT+02:00 Scheid, Bernhard : > As I posted last month, my wiki does not render https requests correctly: > It renders them without CSS. Since Google s

Re: [MediaWiki-l] Logo Missing after edit to Main Page

2014-04-15 Thread dsge herr
Use $wgLogo = $wgServer.$wgScriptPath."/path/to/logo.png"; //absolute url instead of just $wgLogo = "/path/to/logo.png"; //relative url 2014-04-15 15:40 GMT+02:00 john boris : > I am running Mediawiki 1.22.2, PHP 5.46, MySQL 5.5.27 on Ubuntu 12.10. > > When I setup the Wiki I was able to change

Re: [MediaWiki-l] Problem with [[File:Foo.jpg]] funtionality

2014-04-02 Thread dsge herr
What happens when you try it? 2014-04-02 23:39 GMT+02:00 Rowe, Dolores A : > Dear Teammates, > > After upgrading from MW 1.15.4 to MW 1.22.2, I can no longer insert an > image > into my wiki page using the language [[File:Foo.jpg]]. > > Has anybody else ran into this ? Got any ideas ? Pretty p

Re: [MediaWiki-l] How to switch to HTTPS for logins

2014-01-22 Thread dsge herr
You can put something like this to your LocalSettings.php: --- $wgServer = "http://example.com";; $wgHooks['BeforeInitialize'][] = 'redirectIfLoggedIn'; function redirectIfLoggedIn( &$title, &$article, &$output, &$user, $request, $mediaWiki ){ if ($user->isLoggedIn()) { if (strpos($title->ge