Changes
Jump to navigation
Jump to search
Test Web Server Documentation (view source)
Revision as of 16:31, 8 February 2016
, 16:31, 8 February 2016no edit summary
Importing the XML file with the Infobox templates now works as well. Really not sure how this worked...
== Configuring Image Uploads (2/8/16) ==
Might as well try to make some infoboxes. But I need to configure file uploads. There's [https://www.mediawiki.org/wiki/Manual:Configuring_file_uploads a Mediawiki page] that I followed pretty closely.
First, I went to the php.ini configuration file and checked that file_uploads was set to On and noted that open_basedir isn't set.
Then I set the permissions for the images directory to 755 with:
$ sudo chmod -R 755 /var/lib/mediawiki/images
And I also added these lines to the apache2.conf configuration file:
<Directory /var/www/wiki/images>
Options -Indexes
</Directory>
Then I set the $wgEnableUploads options to true in LocalSettings.php.
== To-do list ==