WP CMS Ninja
Forum Replies Created
-
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?Is there anything in the error_log file of the testing location? But I guess that this is why this isn’t the released version yet.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Post Donation Processingso after a donation is made, I need to be able to use the email address and donation amount in some post processing. IE be able to see how much was donated and then do some database work based upon that.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?Please post what version you installed, also anything in the error_log as to why its unable too? like an unlink problem.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Make Zip an option?There shouldnt be any other settings that need to be set. Is there anything in the error_log files?
Forum: Plugins
In reply to: [Restricted Site Access] Conflict with Gravity Forms PayPal IPNIssue still exists, even if you set Site Visibility to “Allow search engines to index this site” it still doesn’t accept the PayPal IPN submissions.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Message Too BigNot sure if the 100k character limit falls under the attachment feature this plugin offers but I do see that as being a possible limitation of emailing all information. Also with regards to file attachment sizes, I should have some sort of checking to see what the size of the zip file is and/or the size of the files being attached as most email providers allow only up to 25mb of files to be attached. Guess I hoped people would utilize this limit settings within Gravity Forms. Is this what you are talking about?
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?Yea, that is why it is in beta right now. I didn’t want to release it as a integrated feature yet. But giving people the opportunity to test it if they wanted too. I will want to integrate it with the ability for people to turn it on if they want.
Forum: Reviews
In reply to: [GF Upload to Email Attachment] Sweet!Thank you for your review and support ??
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Doing nothingYea that was me testing it. I would say I would need to see any error-log entries as to why it is not attaching those specific files for you.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Doing nothingI have been able to confirm just now that it is still working in my testing environment and sending out emails on WordPress 4.3 with Gravity Forms Version 1.9.13 and GF Upload to Email Version 1.3.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Doing nothingIs there anything in the error_log in the root folder of your site? Are you able to do a mail trace and see if it is sending out the email? Did you try it with a small file?
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?Anyone happen to have a chance to test out this beta?
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?I created a 1.4 version which is in beta but it attempts to delete the files in the gravity forms storage area at the same time as the zip file is deleted. You can look at version 1.4 at https://plugins.svn.www.ads-software.com/gf-upload-to-email-attachment/tags/1.4/ to which the gf-upload-to-email-attachment.php has the following changes:
function gfuea_clean_zips($confirmation, $form, $entry, $ajax) { $notifications = $form['notifications']; $gfueaFound = false; foreach ($notifications as $notification) { $last5 = substr($notification["name"],-5); $last7 = substr($notification["name"],-7); if($last5 == "GFUEA" || $last7 == "GFUEANZ") { $gfueaFound = true; } } if ($gfueaFound = true) { $upload_root = RGFormsModel::get_upload_root(); $filename = $upload_root . "/uploaded_files".$entry['id'].".zip"; if (is_file($filename)){ unlink($filename); } //delete files from server $fileupload_fields = GFCommon::get_fields_by_type( $form, array( 'fileupload' ) ); foreach( $fileupload_fields as $field ) { $url = $entry[ $field['id'] ]; if ( empty( $url ) ) { continue; } elseif ( $field['multipleFiles'] ) { $uploaded_files = json_decode( stripslashes( $url ), true ); foreach ( $uploaded_files as $uploaded_file ) { $attachment = preg_replace( '|^(.*?)/gravity_forms/|', $upload_root, $uploaded_file ); unlink($attachment); } } else { $attachment = preg_replace( '|^(.*?)/gravity_forms/|', $upload_root, $url ); unlink($attachment); } } //end delete files from server } return $confirmation; }
Please let me know how it works for you and I will be looking into how to modify the notifications options to try to get choices in there.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Delete file after email?I will look into a way to allow that. I want to create a settings page for this add-on to allow zipping control as well. As it is usually saved with the entry in Gravity Forms I figured it was a good idea to leave them there to not mess anything up with that. Only issue with this I see is if the email happens to fail for some reason or not get delivered the attachment would then be lost. What if in the outbound email a link gets created that says delete files from server?
Forum: Reviews
In reply to: [GF Upload to Email Attachment] Simple, light, and effectiveThank you Josh. I appreciate the review.