ben.moody
Forum Replies Created
-
closed
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] File typesHi
There are two issues here:
1. The error is due to the malformed file name. The name has both a . (dot) and a – (dash) in it this causes an error with plupload.
2. The wav file you passed has a mime type of audio/x-wav. WordPress’s list of allowed safe file types only registers audio/wav.
You will have to add your custom mime type using one of my plugin’s filters. Add this to your functions.php file in your theme:
add_filter( ‘prso_adv_uploader_reject_mimes’, ‘prso_uploader_add_mime’ );
function prso_uploader_add_mime( $allowed_mime_types ) {$allowed_mime_types[‘wav’] = ‘audio/x-wav’;
return $allowed_mime_types;
}This should sort you out.
Thanks
Ben
You can download the most up to date verion of gravity forms plugin here:
Note: This plugin is independent of my plugin. My plugin extends the functionality of gravity forms thus you must have at least v1.6 of gravity forms plugin installed to use my plugin.
Ben
I will have to look into Ajax at some point.
Just disable ajax submitting for the time being.
Ben
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Support for ZapierPlugin makes use of Gravity Forms API for most of the functionality so it should support this.
Ben
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Error: File too large:Closed.
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Files do not adding into form entriesHi
I’ve not come across that myself yet but I do have a few questions that might help me:
Did you try and activate chunked uploads in the options?
Which browser/OS are you using for the uploads?
What version of Gravity forms are you using?
Are the files being added to the media library and just not linked to the form entry?
Could you provide a link to the form page?
Have you turned on debug mode in config.php and looked if there are any error messages displayed?
Also what types of files did you try to upload and where their sizes?
I know that’s a few questions but I can’t narrow down the problem without some more details.
Thanks again for the feedback
Ben
Hi
Looks like your version of gravity forms is a little old. The current version is 1.8 I can only guess either there is an issue with the old version of gforms or in the older version of gravity forms the options were added to a different admin menu item such as settings or tools?
The fact that you can’t see the gravity forms admin option in the menu suggests a problem with the version of gravity forms you currently have. Try updating to the newer version and you should be fine.
Thanks
Ben
Forum: Plugins
In reply to: [Gravity Forms for Zurb Foundation 5 by Benjamin Moody] Currently brokenThanks for the heads up I will give it a test with the new version.
Which version of gforms are you using?
Thanks
Ben
Hi there.
Just want to make sure but do you have Gravity forms plugin installed and if so which version? This plugin extends the gravity forms plugin so this must be installed as well.
Let me know either way.
Thanks again
Ben
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Uploader kills WP-Media-UploaderHi Thanks for the feedback and apologies for the delay in the fix.
This issue should be addressed in the new version 1.17. Thanks for brining this to my attention!
Ben.
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Support for ZapierHi thanks for the feedback
The plugin hooks into Gravity forms api so in theory it should play nice with any default gravity forms functionality.
If you would like to test it out and let me know the results that would be very helpful.
Thanks again
Ben
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Email NotificationHi thanks for the feedback
Looking into adding this in the next update. Had a few requests for this now ??
Thanks again
Ben
Hi thanks for the feedback
I’m going to make this a priority for the next update as i’ve had a few requests for this. Let me take a look at the gravity forms api and see what we can do.
Thanks
Ben
Hi thanks for the feedback.
I have yet to look into using this with ajax submission so i’m afraid i can’t comment on that yet.
There are a number of things i want to add to the plugin so i will add this to the list for future updates.
For the meantime i would recommend disabling ajax form submission until i have chance to look into this.
Thanks
Ben