I’ve read the link here. https://www.ads-software.com/support/topic/can-you-change-order-files-are-displayed/ about sorting the files but I can’t get it to run. Every time I add last part
“In user-files.php, call them using this
MyListUserFiles($files,$current_user->ID,$count);”
It deactivates the plugin.
]]>Is there a way to possibly delete all user-uploaded documents?
If not, then perhaps cache them somewhere outside of the “Manage Files” area?
There are about 3 years worth of thousands of user uploaded documents… it takes a very long time to load them all and can be a hassle when searching for something recent.
Hi
Great plugin, thanks, you saved me tons of dev time.
“I’m getting the below error when logging in as a user and trying to download a file assigned to me.
You must login to download this file.
I have tried switching on allow_url_fopen but still not resolved, any ideas?”
this is the same error i’m getting… I read the previous posts. But there is no solution out there.
please help me to solve this issue.
thanks.
]]>The current version of this plugin seems to be broken. While a file is being uploaded, inserting the record for the uploaded file fails with a database error: “Column count doesn’t match value count”. This is because the field for the description is missing in the INSERT-statement in file functions.php, around line 518.
I worked around this bug in my installation by simply addding an empty value for the description. I would be glad to see a fix in a future release.
]]>Hi,
can I change the name of the folder with user nickname and not by its id?? please.. given the change
]]>How can I, for example: allow clients to “Login”, and they access their files? Are user accounts possible?
]]>Hi
Great plugin, thanks, you saved me tons of dev time.
I’m getting the below error when logging in as a user and trying to download a file assigned to me.
You must login to download this file.
I have tried switching on allow_url_fopen but still not resolved, any ideas?
Thanks
D2c
Hi
I’ve just started to use this and I can’t download files from the widget. The files show up (looking like a hyperlink, but nothing happens if you click them) and there is no little green icon with the download arrow next to them (like you get on the Dashboard Widget. ) It works fine if I use the short code [user_file_manager] Just the page widget is causing my problem.
I hope that makes sense…
Thanks
]]>So I am wondering, how users can upload big files, like 200mb
because, now, it says that max is 40mb,
and if I chose bigger file, it seems that it uplaods, but do not shows up in listing.
So maybe it possible to upload files to Google drive all files?
Because, users will upload audio files for me, so I can transcript theme, and audio size can vary.
Or maybe I somehow can over come upload limit, when I upload to ftp folder?
Thanks!
]]>Tried to move a website using this plugin to a new server with a newer version of php running. It took the whole site down with a Parse error: syntax error, unexpected T_STRING in /user-files/user_files.php on line 1
]]>User files with () example:
2103 Tax (simplified).xls
upload and can be downloaded from the users widget.
However, admins using the file browser cannot view these files. It displays a 404 error page.
User URL:
/clientareadocuments/?theDLfile=894832/2013%20Tax%20(Simplified).xls
Admin URL:
/wp-admin/admin.php?page=manage-files-main&theDLfile=894832/2013%20Tax%20(Simplified).xls
The file name
2013TaxSimplified.xls
functions as expected.
User URL:
/clientareadocuments/?theDLfile=894832/2013TaxSimplified.xls
Admin URL:
/wp-admin/admin.php?page=manage-files-main&theDLfile=894832/2013TaxSimplified.xls
Temporary fix has been to remove all ‘ ()’ from files. Please let me know if there is a resolution to this issue.
Thanks!
]]>Hi.. i just download your plugin and using it and i read in one of earlier post that
“yes, you can use [user_file_manager] in the page or post to display the users files. We have also released a commercial addon that will allow you to have the admin panel available in a page or post also. “
My question is how i can show admin panel on page or post.
kindly quick response is expected as i am working on a project.
Hello.
Sorry for the question but I haven’t found any way to ‘ativate’ the language files that come with the plugin.
Can you please help?
Best regards.
]]>Users can see the list but when they click this message appears:”Image cannot be loaded. Make sure the path is correct and the image exist”
Ok…. But the image exist and the path is correct.
Something else has to be happening.
Any idea?
Thanks
there is no file extension filter.How to filter dangerous file formats.This creates a security issue.Please Help.Thanks in advance.
]]>user files is a nice plugin.
But PHP has two settings for limiting form upload. And user files only checks one of them.
In the code for the widget or manage_files_user() (user-files/functions.php) it checks for the file size through ini_get('post_max_size')
.
This is not the limit for a individual file. It’s the limit for the whole form posted (which can hold multiple file upload instances for example). It should check the ini-directive for upoad_max_filesize
instead.
PHP DEFAULTS
post_max_size = 8 MB
upload_max_filesize = 2 MB
One can fix it by commeting out two rows and adding a third:
row 115 in widget.php
// $max_post = (int)(ini_get('post_max_size'));
// $MaxSet=1000000*(int)$max_post;
$MaxSet = (int)(ini_get('upload_max_filesize')); // no extra math needed since upload_max_filesize is set in MB and not bytes.
(To change it for the short_code option you locate the same variables on row 463 in functions.php.)
]]>Good day everyone,
I am currently looking for a way to manage downloads for a client of mine. She would like a way to post downloads to an individual user’s account and have them only be able to download it after the user logs in.
From what I am seeing, this plugin uploads all files to the public_html/WEBSITE/wp-content/uploads/file_uploads/ path, which in Apache if there is no index page, is openly viewable. Going to site.com/wp-content/uploads/file_uploads/ shows the full folder and file tree, whether you’re logged in to the website or not.
So, is there any way using this plugin to actually restrict downloads to just the intended users, and not just grabbing a link from a public facing folder? Is there some way using WordPress, this plugin, or Apache to truly put these downloadable files behind a log in on the WP-Admin page?
Thank you for your time.
]]>Tank you for your plugin! I made the italian translation and I’d like to share with the comunity
https://www.devfarm.it/userfiles-it-IT.zip
Just One request: please add localization support in the the table header
]]>Is there a way to insert a download url as a clickable file name in notifications emails sent to users when uploading files for them? I wish I achieved a notification email something like:
“Hello John
There is a new file posted for you on %DATE% by %USER%.
Feel free to download %FILENAME%.”
– where %FILENAME% generates ie. filename.pdf
I also wonder if there’s a way to create a selectable email templates so that I could select one depending on a kind of uploade file.
Is it possible to edit text that appears in the dashboard widget for users?
Thanks for this great plugin and your work!
]]>Hi,
The plugin fails to include the widget and functions php files when WordPress is configured to use a shared wp-content folder.
Here is the fix (lines 32/33 of the plugin php file):
require(plugin_dir_path( __FILE__ ) . '/widget.php');
require(plugin_dir_path( __FILE__ ) . '/functions.php');
]]>
Hi, today the folder created has a number as name.
I want to rename the folder to the username associated, is it possible?
Thanks
]]>There is some way to make editor role or other roles to manage user files from wordpress admin area?
]]>Hi, I really like the User-Files plugin. Now I want to share the uploaded file with the Multiple registered members. It can be a group like “Subscribers” or “Admin” or “Contributors” or “All members”. Could this be done?
Thnx.
]]>I’m displaying the file list on a page with the [user_file_manager]
shortcode. I want to display by the date they were uploaded/updated.
I added a timestamp field to userfile_data table.
I don’t see where in the functions.php or user_files.php where I can change the sort order… by adding something like ORDER BY ‘dateTime’ DESC
Is it possible?
]]>Hi.
When I upload a file in a specific Category, the file result uploaded correctly but always on the Default Category…I try to create others category and select it before the upload, but nothing, always all files are placed in the default category…what’s the problem?
Thank you!
Drober
]]>Hi,
I’d like to manage files and their categories via ftp.
I’d like to create a folder for each user and inside other folders for each category where the files are stored.
There should then be a folder at the same level of the user folder that is accessible to all users of the site, which contains material for all, avoiding to reload the same file multiple times.
is it possible?
]]>You must login to download this file.
Warning: Cannot modify header information – headers already sent by (output started at /wp-content/plugins/user-files/user_files.php:1581) in /wp-includes/pluggable.php on line 881
I want to create various multiple child category (Multi level); currently there is only option creating subcategory at level 1
]]>I want to change the FTP path which is given by default user files plugin how do I change it?
]]>This there a way remove the “Notify User of Upload” Checkbox from the Add Files page?
Are there any options for the Shortcode used in template page: [user_file_manager]
Thank you