WP CMS Ninja
Forum Replies Created
-
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Make Zip an option?Hi Joshua,
For now I just modified it so you can use GFEAUNZ instead of GFEAU to specify NZ. After finally getting the readme correct I just increased the version to 1.3. Please give it a try.
ThanksForum: Plugins
In reply to: [GF Upload to Email Attachment] Make Zip an option?Reasonable request, next update will have settings menu with ability to turn off zip functionality. Also looking into way to hsve options within notifications instead of name modification so maybe have it a choice on that screen at some point.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Make Zip an option?But fora quick fix if you comment out lines 44 to 50 and line 58 it should get back to working for you.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Make Zip an option?Hi Joshua,
Do you gappen to have any error logs as to why it is not working? It should,fall back to attaching individual files if it cant create the zip file. When I tested it I was able to have it work. I will work on a settings page to turn off even the attempting of the zipping but error logs would be great in solving the problem.
GregForum: Plugins
In reply to: [GF Upload to Email Attachment] feature requestHi Joel,
Please update to version 1.1. If multiple files are uploaded through a form it now attempts to create an archive and attach the archive instead of each individual file. It does fail back to attaching single files if it can’t create the archive. Please let me know if it works for you. Thank you for your suggestion.
GregForum: Plugins
In reply to: [WooCommerce] Automatic Notification Emails not being sentI have gone through and made sure the custom templates are all updated where they need to be.
So I had checked off for WordFence to scan files outside of the WordPress Core and all plugins and themes within the options area of WordFence and it didnt find a few basic eval injected files.
./wp-content/plugins/ml-slider/ajax.php: eval($bd4a[$GLOBALS[‘n7f30’][12]]);
./wp-content/plugins/groups-404-redirect/object21.php: eval($o34f7[$GLOBALS[‘w4c70’][18]]);
./wp-content/plugins/gravityformspaypal/js/include50.php: eval($w6612fc[$GLOBALS[‘m3c78’][41]]);
./wp-content/plugins/wp-realtime-sitemap/user44.php: eval($v4c7b2[$GLOBALS[‘m0b598’][94]]);Here are a few samples from files that was found through a manual scan at the linux shell.
Forum: Reviews
In reply to: [Norse Rune Oracle Plugin] Really Great!I thank you for your review. Norse Runes have played an important part in my life and has helped me many a time so I wanted to share it with others. At some point I plan on improving and expanding this plugin. Better displaying of read outs, maybe jQuery readings without having to reload the page. Ability to add your own layouts. Other suggestions are welcome.
Forum: Fixing WordPress
In reply to: Plugin Editor Not ShowingI have disabled all plugins, as well as changed from one 201* theme to multiple different ones. Confirmed no extra files being run in the plugins directory. Also overwrote all files with brand new ones from the wordpress 4.2.2 zip file.
Forum: Plugins
In reply to: [Import External Images] PHP errorIf you add the following code to the line 468 it gets rid of this error. So the new code will look like:
if (isset($posts_to_fix)) if ( is_array( $posts_to_fix ) ) {
Forum: Plugins
In reply to: [Current Age Plugin] Does not work with WordPress 4.2.1add this line for instance into functions.php of your theme.
add_filter(‘widget_text’, ‘do_shortcode’);
Forum: Plugins
In reply to: [Current Age Plugin] Does not work with WordPress 4.2.1Make sure the plugin is active as the shortcode will display if it is not.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Not workingMarking as resolved. I have confirmed plugin is working properly if you add what is needed to the notification name.
Forum: Plugins
In reply to: [Current Age Plugin] Does not work with WordPress 4.2.1Just tested it on my site, here is the testing page and it is working for me at https://wpcms.ninja/current-age-test-page/. Please provide any entries from the error log of your site.
Forum: Plugins
In reply to: [GF Upload to Email Attachment] uploads to attachements when form is savedI am going to have to test a multi-step form to see what triggers happen and such. As this plugin has only been tested with a single page submit and done form. The filter that is being called in this plugin is
add_filter('gform_notification', 'GFUEA_custom_notification_attachments', 10, 3);
so I would think that this would get fired whenever a notification is to be sent out via email. It does this by checking the notification name for the keyword.
substr($notification["name"],-5) == "GFUEA"
So it appears that the save and continue notification doesn’t send out using the same notification style. I attempted to rewrite it to see if the $notification[“name”] == “Save and Continue Email” and add the attachment to the $notification variable and it just doesn’t attach it.
It looks like Gravity Forms save and continue functionality doesn’t set the correct mime-content-type or process attachments when using this feature. Although the image is still saved to the server for when they go back to the form so with at least that notification it isn’t needed. On the final submit of the form it still attaches the image as it should to the final notification email.
I will try to see if I can find a way to do this but I think this falls outside of the scope of this plugin.