View Single Post
Old 4th June 2013, 21:31   #2  |  Link
mariush
Registered User
 
Join Date: Dec 2008
Posts: 589
Cool. Any reasons why you didn't use avisynth.net?

Unrelated... For me personally it will annoy me to no end to see that "index.php" in the urls. I'd change that to "pages" or something like that... you can do that easily with a plain entry in the virtual host configuration and some entries in localsettings.php of the wiki

$wgScriptPath = "/wiki"; // <--- folder where the mediawiki is on the server
$wgScriptExtension = ".php";
$wgArticlePath = "/pages/$1"; // <--- pages is what will show up in url
$wgUsePathInfo = true;

example of a virtual host on my dev server ... with mod_alias enabled outside in the modules list.

<VirtualHost *:80>
RewriteEngine On
ServerAdmin contact@example.org
DocumentRoot c:/projects/exampe
ServerName dev.example.org
# ServerAlias www.example.org
Alias /pages c:/projects/example/wiki/index.php
ErrorLog logs/examplewiki-error.log
CustomLog logs/examplewiki-access.log common

<Directory "c:/projects/example">
AllowOverride All
AddOutputFilterByType DEFLATE text/css text/js text/javascript application/javascript text/html
Order allow,deny
Allow from all
</Directory>

</VirtualHost>
mariush is offline   Reply With Quote