Moodle Plugins directory: File upload | Moodle.org
File upload
User profile fields ::: profilefield_file
Maintained by
Shamim Rezaie
A file upload profile field for Moodle
Latest release:
656 sites
349 downloads
35 fans
Current versions available: 1
This is a file upload profile field plugin for Moodle.
Using this plugin, you can define new profile fields to ask users to upload some files through them.
If this plugin makes your life easier you can treat me a coffee
Useful links
Contributors
Shamim Rezaie (Lead maintainer)
Please login to view contributors details and/or to contact them
The plugin is not discontinued. However, maintaining plugins for new Moodle versions takes time. I recently updated some of my plugins, but I can only maintain a limited number of plugins for free. I will upgrade as soon as I have some funds to work on this.
Thanks for your useful plugin.
Can you please inform me if there is a way to download users' uploaded files in bulk?
Regards
If I place the profile field on a Certificate template I just get text of the name of the file. Not the actual image on the certificate.
Is what I'm trying to do possible with this plugin?
Unfortunately that's not possible as far as I know
None of the existing certificate elements can embed profile files. So You would need to have a new type of certificate element (a new plugin type to be developed) to be able to show profile files on your certificates.
Is there a reason why a file uploaded would disappear after two weeks? Thanks much.
Neil
So the work around we have been using is that you have to first download all current files and then add them back into the fileupload along with any new files. Is there a fix for this issue?
Thanks
Jerry
I'm happy that you found this plugin helpful. I have yet to test the file upload plugin with Moodle 4, and some parts of the code probably need an update. I can only maintain a limited number of plugins for free, and unfortunately, I could not supply any funds for this plugin ($8 in 8 years, including the recently received $5). I will look into this plugin when I find some spare time.
I was able to fix this in the code. In the Moodle directory file user/profile/field/file/field.class.php where this plugin installs. On line 105
$this->data = $draftitemid;
Replaced with:
$this->field->defaultdata = $draftitemid;
From what I could figure out the location of the defaultdata for the field had changed and when the filemanager loaded, it no longer looked in the old location.
hope this helps someone out there. I did not know much about the file manager but I know a lot more now.
we're currently using the plugin with said fix with moodle 4.3.3 and with 4.2.6, it works as intended