I'm attempting to port some content from TWiki to MediaWiki and whereas the former seems to allow the uploading of spreadsheets, the latter does not. I'm not interested in displaying / previewing the spreadsheet - just a hyperlink would do fine.

I appreciate that I could store the Excel files 'off-wiki' and externally link to them, but it would be good to keep it all together if at all possible - otherwise we'll have to think about maintaining seperate but logically linked filesystems etc.

Also, I would like to keep it in its original form rather than converting to HTML / JPG etc.

Has anyone hit this problem and if so, how was it solved?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Look in LocalSettings.php. You can then add this line: $wgFileExtensions = array('png', 'gif', 'jpg', 'jpeg', 'svg', 'xls'); (or whichever extensions you want). But be aware that you might want to switch this off after you've done your transfer otherwise your server will quickly become full with files!

See also Manual:$wgFileExtensions

link|improve this answer
feedback

I've answered this here.

link|improve this answer
@Mark Robinson: Thanks, but that's not what I want. I don't want to change the format of the file. I just want upload it / create a link to it which, when followed, will open the file in an appropriate 'viewer' (i.e. Excel, OpenOffice etc.) If the file was 'off-wiki' it would be easy, but MediaWiki doesn't seem to allow uploading of anything other than pictures or (limited) HTML. I can see that for some extensions there are security concerns, but it does seem pretty limiting. – Component 10 Nov 1 '10 at 11:16
1  
@Robin Welch:ah, my apologies. In that case look in LocalSettings.php. You can then add this line: $wgFileExtensions = array('png', 'gif', 'jpg', 'jpeg', 'svg', 'xls'); (or whichever extensions you want). But be aware that you might want to switch this off after you've done your transfer otherwise your server will quickly become full with files! – Wikis Nov 1 '10 at 11:51
@Robin Welch: and more info here: mediawiki.org/wiki/Manual:$wgFileExtensions – Wikis Nov 1 '10 at 11:52
@Robin Welch: posted the above as a separate answer for clarity for other readers. – Wikis Nov 1 '10 at 11:53
@Mark Robinson: Thanks very much Mark. – Component 10 Nov 1 '10 at 15:21
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.