Computer Scientist, Graduate Student, and Geek

Tag: mediawiki

Enable Uploads in MediaWiki

May 02, 2011

To enable uploads (images and PDFs) in MediaWiki, make the following changes to the LocalSettings.php file for the installation:

  1. Change the line
    $wgEnableUploads       = false;
    to
    $wgEnableUploads       = true;
  2. Add the line
    $wgFileExtensions = array_merge($wgFileExtensions, array('pdf'));
    to also allow PDFs to be uploaded.

Categories: Uncategorized

Tags: mediawiki