When I upload a large (>245 Mb) file to my MediaWiki wiki (using Upload file, same as for images), I see:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

This is a .avi file. I have set this as a permissible file type in LocalSettings.php.

How can I solve this? Is there a time out for uploading files (though this takes less than 10 seconds)?

Increasing the memory to 1024M did not work:

ini_set( 'memory_limit', '1024M' );

link|improve this question

What do your webserver logs say? – Cakemox Feb 17 '11 at 13:03
feedback

3 Answers

up vote 3 down vote accepted

check upload_max_filesize in /etc/php.ini

link|improve this answer
@B14D3 - ironically, I posted the same solution at the same time as you. Thanks, I will accept your answer. – Wikis Feb 17 '11 at 14:39
2  
@Wikis Actually, you beat him by 24 seconds :) – squillman Feb 17 '11 at 15:19
1  
@Wikis Hover your mouse over the "answered X hours/days ago" text on a post and it shows the exact time the post was entered in the database. – squillman Feb 17 '11 at 15:22
1  
@squillman - and again I've learnt something - thanks! – Wikis Feb 17 '11 at 16:45
1  
:D good one :D same time ... I'm glad I could help :D – B14D3 Feb 18 '11 at 11:26
show 1 more comment
feedback

Solved - it appears that this was in php.ini:

upload_max_filesize = 2M
link|improve this answer
feedback

check out the directory to which these image files are being uploaded has enough permissions, i dont suspect its timeout problem , the file size is not so big , its something to do with script which is handling this upload and writing to server in some dire

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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