[MediaWiki-l] Rewrite Rules

2013-01-12 Thread Steve VanSlyck
OK, this is my first attempt to use rewrite rules. I've done the best I can to follow the instructions at http://www.mediawiki.org/wiki/Manual:Short_URL/Apache . I've created an .htaccess file and put it at root at http://www.vanslyck.us as follows: ##

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Mark A. Hershberger
On 01/12/2013 08:03 PM, Steve VanSlyck wrote: # Short url for wiki pages(dunno if [PT,L] is required instead) RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/wiki/index.php [L] # Redirect / to Main Page(dunno if [PT,L] is required instead) RewriteRule ^/*$ %{DOCUMENT_ROOT}/w/index.php [L]

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Steve VanSlyck
Yep, tried that. Wouldn't work. It reported, We found a rel=EditRSD for your wiki, however the resulting document did not declare the location of a MediaWiki installation's API point in it. Are you sure you gave the url to your MediaWiki installation? If you gave the correct url your install

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Dave Humphrey
Your $wgScriptPath should be where your script files are which is not the same as your article path. Typically $wgScriptPath = /w. Where have you installed your files relative to the root of your web server? On 12 January 2013 20:03, Steve VanSlyck s.vansl...@spamcop.net wrote: OK, this is my

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Steve VanSlyck
LocalSettings.php says: $wgScriptPath = /wiki; On 1/12/2013 20.22, Dave Humphrey wrote: Your $wgScriptPath should be where your script files are which is not the same as your article path. Typically $wgScriptPath = /w. Where have you installed your files relative to the root of your web

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Steve VanSlyck
OK, That's working great - thanks Mark! Can this be adjusted so that calls to http:mysite.com redirect to http://_www_.mysite.com? On 1/12/2013 20.17, Mark A. Hershberger wrote: On 01/12/2013 08:03 PM, Steve VanSlyck wrote: # Short url for wiki pages(dunno if [PT,L] is required instead)

[MediaWiki-l] Gender

2013-01-12 Thread Steve VanSlyck
Brion, Thanks for your response, and I understand your point. However if the question Gender is asking for what gender characteristic to use then the answers should be Masculine and Feminine instead of Male and Female. ___ MediaWiki-l mailing

[MediaWiki-l] Interwiki extension

2013-01-12 Thread Steve VanSlyck
I'm trying to download the Interwiki extension discussed at http://www.mediawiki.org/wiki/Extension:Interwiki The download link (the one titled tree) takes me to https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/extensions/Interwiki.git;a=tree . But what am I supposed to download?

Re: [MediaWiki-l] Interwiki extension

2013-01-12 Thread aude
On Sun, Jan 13, 2013 at 4:11 AM, Steve VanSlyck s.vansl...@spamcop.netwrote: I'm trying to download the Interwiki extension discussed at http://www.mediawiki.org/wiki/**Extension:Interwikihttp://www.mediawiki.org/wiki/Extension:Interwiki The download link (the one titled tree) takes me to

Re: [MediaWiki-l] Interwiki extension

2013-01-12 Thread Steve VanSlyck
There are 16 snapshot links. Which one is the right one, the stable one? On 1/12/2013 22.20, aude wrote: On Sun, Jan 13, 2013 at 4:11 AM, Steve VanSlyck s.vansl...@spamcop.netwrote: I'm trying to download the Interwiki extension discussed at

[MediaWiki-l] (sans objet)

2013-01-12 Thread plutot75
___ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Tom Hutchison
On 1/12/2013 8:18 PM, Steve VanSlyck wrote: Yep, tried that. Wouldn't work. It reported, We found a rel=EditRSD for your wiki, however the resulting document did not declare the location of a MediaWiki installation's API

Re: [MediaWiki-l] Rewrite Rules

2013-01-12 Thread Mark A. Hershberger
On 01/12/2013 08:44 PM, Steve VanSlyck wrote: That's working great - thanks Mark! Can this be adjusted so that calls to http:mysite.com redirect to http://_www_.mysite.com? Sure. You just need to add these three lines right before those lines: RewriteCond %{HTTP_HOST} !^www\.example\.com