Issue : By default in joomla 1.6, administrators are only allowed to upload image files of 10MB in size via the PHP administrator interface, using “Media Manager”. We needed to allow Joomla admins to upload a variety of filetypes (such as PDFs, DOCs, etc) and with a file upload limit of 100MBs
Solution :
1. Access the administrator interface in joomla > content > media manager
2. Click the “Options” button on the top right
3. In the resulting pop-up, make sure your file extensions are part of the list “Legal Extensions (File Types)”. Do the same for “Legal MIME types”. See the following link for a list of MIME types:
http://www.webmaster-toolkit.com/mime-types.shtml
4. Change the “Maximum Size” to your chosen value
5. Enable the flash uploader (it’s easier to use, allows multiple file uploads)
————————–
That’s all that’s needed from the GUI. However, there are still some changes that need to be done to the webserver. PHP imposes some global limits on file uploads that need to be changed. If these are not modified to reflect you new 100MB limit, you will be presented with an error message along the lines of: "please input a file for upload”
1. Open a SSH shell to the webserver.
2. Use your favourite editor to open the file “php.ini”, so for example using nano:
# nano /etc/php.ini
3. Edit or create the following variables:
file_uploads = On
upload_max_filesize = 100M
post_max_size = 8M
————————–
PS: this forum post also suggests to define the variable “live_site” in the joomla configuration. php, but this didnt’ make any difference to me.
One other error encountered when uploading files was: File Error: httpStatus.
In case you also run into this error, try using Internet Explorer or Chrome. If your preferred borwser is Firefox, try using the “IE tab” plugin.
Unfortunately this solution doesn’t work since J1.6.0 until J2.5.2
This may be caused by php =5.3
Hi. I’m over my head with Joomla. I too am getting the ”File Error: httpStatus” when I try to enable flash loader. I’m running Firefox 14.0.1 and apparently IE tab doesn’t work with this version. Do you have any other ideas/options to fix this error? I also tried turning off cache which was mentioned on another forum. That didn’t do anything. I’ve also restarted Firefox. I’d love any suggestions. Thanks.
Hey
I actually ran into further problems with joomla and users uploading, to the extent that I decided to completely bypass the feature. I ended up writing a php app on the same server that handles uploads based on this:
http://www.tizag.com/phpT/fileupload.php/
I used joomla’s web link menu shortcut to point to this url as an external source, and modified the php code to my purposes, such as giving the user the file link after the upload, so they could copy/paste it into joomla’s article editor when needed
Dave
I really enjoyed this post. You describe this topic very well. I really enjoy reading your blog and I will definitely bookmark it! Keep up the interesting posts!