webaware
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Eway] Duplicate PaymentsG’day Pete,
Very strange, I wonder if you’ve changed something with your caching or added some plugins recently?
Best bet for Gravity Forms eWAY is to create a separate confirmation page and change your form settings to use that page. That way, if a customer leaves their browser open to your form confirmation, all it can reload is the confirmation page.
https://docs.gravityforms.com/configuring-confirmations/#page-confirmations
For the WooCommerce one, even stranger; likely a problem with the theme. I recommend changing to the official WooCommerce add-on for eWAY, which separates the card entry from the customer details and thus might resolve your problem.
cheers,
Ross@duongcuong96 I didn’t receive notifications of your notes, so my apologies for not responding to them. The issue is not resolved, it is a problem with how the latest version of the AWS SDK is being used. Looks like memory is being allocated and not released somewhere there.
No, I did not try with DropBox, as my backup procedures require a secure Amazon S3 bucket. Also, as above, the problem is in how the AWS SDK is being used; how will changing to DropBox fix a bug in your AWS code?
This problem has existed since v3.6.10 and was present in v3.6.11 as well as v3.7.0, so it should be familiar to you by now 🙂
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] WP behind reverse proxy all content insecureG’day Pete,
You need to pass some information to the back end Apache so that WordPress can detect when it’s being accessed via https. Here’s the headers you need to send:
RequestHeader set X-Forwarded-Proto "https" RequestHeader set X-Forwarded-Port "443"Then you can add this to your wp-config.php file to detect when the website is loaded on https:
if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { $_SERVER['HTTPS'] = 'on'; }I recommend getting those two things set up, verifying that all works well including the admin login and changing settings in the admin. Once you’re sure it’s working, set the site and home URLs both to https and login again. You can then set about cleaning up your content as described in the doco:
https://ssl.webaware.net.au/testing/cleaning-up-content/
cheers,
Ross- This reply was modified 6 years, 5 months ago by webaware.
G’day glashkoff,
Thanks for the bug report. I’ll get a new version out today or tomorrow with a fix.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Installed and saved but still not secure messageG’day,
Try changing your fixer settings to Capture, so that it cleans up images in your page header. There are two images (transparent-logo.png and bg-1.jpg) causing insecure content warnings.
Fixing it might be simpler. Always make sure you edit your website from https, and edit your theme settings to pick the logo and background images from https. That will likely clean up the warnings.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] not working with import user and ordersG’day birken,
It sounds like you have another plugin that is providing an alternative method of sending emails, such as an SMTP plugin. Can you check your active plugins please?
cheers,
RossForum: Plugins
In reply to: [Disable Emails] New Post Emails are still being sent. Please help.G’day Jordan,
Do you have Jetpack installed, and do you have its Subscriptions module activated with post notifications? I think that’s what it turned out to be with the above (although it was never confirmed). Here’s how to turn off a Jetpack module:
https://jetpack.com/support/control-jetpack-features-on-one-page/
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Conflict with Visual Portfolio pluginG’day giuseppeadapt,
This plugin doesn’t make any permanent changes, it only changes the output of the website while it is active. If you are having problems with Visual Portfolio when SSL Insecure Content Fixer is not active, you should ask the developers of Visual Portfolio for help.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] New Post Emails are still being sent. Please help.G’day Steph,
That would be a plugin doing that, and if it’s sending out emails even with this plugin installed, then it’s using something like SMTP settings to connect to an external email gateway to do it. Have a look at your plugins, especially any that say they’re post notification plugins.
If you like, copy your Site Health Info report and send it to me via my support form, and I’ll see if I can spot it. NB: don’t paste it here in public, use my support form!
WordPress Admin > Tools > Site Health > Info, click the button to “Copy site info to clipboard”
https://shop.webaware.com.au/support/
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Connect to multiple Windcave (DPS) accountsG’day Wil,
Let me think about it and get back to you…
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Connect to multiple Windcave (DPS) accountsG’day Wil,
Not with the current plugin. I have a plan to create a pro version, but it’s been on the back burner for… a long time now! Unlikely to happen this year.
I do have support for this through my eWAY pro plugin, which doesn’t help you much with Windcave accounts but might still be an option. I believe that Naomi Bush’s Stripe plugin also supports multiple accounts.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Impossible to desactivate without errors…G’day Marc,
Détection HTTPS should be set to the setting that the plugin recommends. e.g. if it recommends
HTTP_X_FORWARDED_PROTOthen please select that setting. If you don’t, then WordPress will not know when your website is loaded on https and you could get Too Many Redirections errors.Deactivating the plugin can also give you those errors if you have changed your website Home and Site URL to https, because WordPress can’t tell when you’re on https and will redirect you to https endlessly.
If you want to remove this plugin safely, you will need to modify your wp-config.php file. In your case, you can add this to your wp-config.php file near the top:
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') { $_SERVER['HTTPS'] = 'on'; }cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Impossible to desactivate without errors…This plugin does not make any changes to your website, it only converts bad links into good links while it is running. If you have changed your website settings to https (Settings > General) then you will need to clean up your content with something like Better Search Replace as described on the documentation site:
https://ssl.webaware.net.au/testing/cleaning-up-content/
cheers,
RossG’day clickingclients,
Thanks for the report. I received your other messages too. Will look into this today, and it does sound like a user initiated retry from what you’ve described, especially if it only happens when there’s been a delay in processing at the eWAY gateway.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] Problem when used with WP SES pluginG’day meadows19,
WP SES is doing they same thing this plugin is doing: replacing the
wp_mail()function. You can only have one of these plugins active at the same time.But it’s simple. When you want to disable emails:
- activate Disable Emails
- deactivate WP SES
When you want to enable emails again:
- activate WP SES
- deactivate Disable Emails
That will ensure that the correct plugin is replacing the
wp_mail()function when you need it.cheers,
Ross