nickboss
Forum Replies Created
-
Forum: Plugins
In reply to: [Iptanus File Upload] I think this plugin has a security holeI have made several improvements to file wfu_downloader.php in the last releases for avoiding hacking.
However, it is strange that the file 015a53bd738f.php got into the plugin folder. The access logs do not reveal how that happened.
If you update the plugin to the latest version this file will be deleted.
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] I think this plugin has a security holeWhich version of the plugin you were using?
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] I think this plugin has a security holeGood morning, I just checked the plugin. I do not see a file 015a53bd738f.php in its contents. So it somehow got in there.
Have you configured an upload form? If yes, can you send me the shortcode?
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Userlabel height not possible to set to autoTry the following CSS in Custom CSS area of the shortcode:
.MuiInputBase-root {height: auto;}
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Userlabel height not possible to set to autoHi, I opened your page. The dropdowns show correctly. Here is a screenshot of them:
Regarding the labels, they can wrap with css, however it is not easy to apply css on them because they are inside a shadow DOM. You need the Pro version that contains a Custom CSS editor inside the visual editor of the upload form.
Best Regards
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Zip files not allowedGood morning, filtering in Uploaded Files is a feature which will be added in one of the next releases.
Best Regards
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Zip files not allowedChange upload patterns like this:
*.*, *.zip, *.xlsx, *.xls, *.doc, *.docx
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Zip files not allowed@achille83 please send me the shortcode of the upload form.
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Zip files not allowedOpen the visual editor of the upload form, locate option Admin Messages in General tab and activate it.
Then upload a file again as an admin. The error message will show some more info about the problem. Can you share it with me?
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] .ai vector file is unable to uploadGood morning, I suppose you have the free version of the plugin. So a hook is required to allow csv files that their mime type is text/plain (the plugin accepts csv files with mime type text/csv).
Install Code Snippets plugin and then add a new snippet. In the snippet add the following code:
if (!function_exists('wfu_extensions_mime_types_handler')) {
function wfu_extensions_mime_types_handler($list) {
$list['csv'] = array( 'text/csv', 'text/plain' );
return $list;
}
add_filter('_wfu_extensions_mime_types', 'wfu_extensions_mime_types_handler', 10, 1);
}In the next release of the plugin this will be fixed so you will not need the hook.
Best Regards
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Zip files not allowedForum: Plugins
In reply to: [Iptanus File Upload] .ai vector file is unable to uploadGood morning, can you send me the shortcode of the upload form? I tried to upload .ai files in my environment and it works fine. I also tried to open your page, but I got a 403 Forbidden error.
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] .ai vector file is unable to uploadGood afternoon,
Try to upload the file as administrator. It will fail again, but you will get some more info about the error.
Please share it with me.
Best Regards
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] Upload msg filesGood afternoon @mlmoreno , can you send me the shortcode of the upload form you use?
Best Regards
Nickolas
Forum: Plugins
In reply to: [Iptanus File Upload] .ai vector file is unable to uploadGood morning, what error do you see?
Best Regards
Nickolas