Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › When downloading a file the file type extension gets dropped. › Re: When downloading a file the file type extension gets dropped.
September 27, 2014 at 11:15 pm
#2046

Keymaster
@stenniswood. I am in the process to releasing version 3.1, so I was going to incorporate the bug fix to the new release. That release should be ready in a few days. If you need to get it fixed asap, please go to ‘components/com_easyfolderlistingpro/views/download/tmpl’, open up the default.php file, and on line 81, you will see:
1 |
header('Content-Disposition: '.$this->attachment.';filename="'.$this->filename.'";'); |
change it to:
1 |
header('Content-Disposition: '.$this->attachment.';filename="'.$this->filename.'.'.$this->extension.'";'); |
This will fix the issue with the missing file extension.