webaware
Forum Replies Created
-
Forum: Plugins
In reply to: [Delete Expired Transients] Change deletion frequencyG’day mravat,
35 active plugins isn’t huge for an eCommerce website. My own shop has 38 active plugins, many very small, and I tend to minimise plugin use — but once you start installing eCommerce and forms add-ons, they mount up.
Your real problem here is that (at least) one of your plugins, or your theme, is abusing the transients API. If you can identify which one(s) that is, you might be able to switch to an alternative that isn’t doing that. The Transient Manager plugin can help you view transients stored in your options table, so check it out:
https://ww.wp.xz.cn/plugins/transients-manager/
It’s more in your interest to do that than to continue fighting the build up of transients in the options table. If they need clearing out more than once per day, that means they are impacting the performance of your website beyond merely growing the size of your database. Running the delete queries more often just means adding more database load, when you should look at solving the cause of the problem.
Beyond that, if you find you need to keep whichever plugin is causing the excessive growth in transients, I recommend that you upgrade your server to use a persistent object store like memcached or redis. When you use one of those with WordPress, transients are not stored in the options table at all.
But one thing more: it sounds like you’re resolving your problems by clearing the transients manually. Are you only clearing expired transients or all transients? If your transients build up is largely not expired transients, you will have problems even with memcached or redis. You will need to identify the cause, and fix that.
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] Is Woo Subscirptions fully supportedG’day edzz83,
No, not supported. You should use the WooCommerce eWAY Gateway plugin instead.
cheers,
RossForum: Plugins
In reply to: [Gravity Forms Eway] Duplicate transactionsG’day SD,
The best way to ensure no duplicate entries / transactions with Gravity Forms is to give the form a confirmation page to go to, not just confirmation text. That way, if the visitor’s browser reloads the page (e.g. they shut their laptop, then reopen it later) it will only reload the confirmation page and not try to repost the form.
https://docs.gravityforms.com/configuring-confirmations/
cheers,
RossForum: Plugins
In reply to: [Two Factor Authentication] Turn off autocomplete for one-time codeG’day David,
Will do. Also, I just tested it and it is ignoring one-time-code as well, still wanting to push a login name or something in there.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] SSL Insecure Content Fixer not able to disableG’day madhuresh,
That sounds like you have enabled
HTTP_X_FORWARDED_PROTOfor HTTPS detection, so deactivating the plugin will stop doing that for you.You can add this code to your wp-config.php file somewhere near the top, and it will do the same job without the plugin being activated.
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') { $_SERVER['HTTPS'] = 'on'; }cheers,
RossForum: Plugins
In reply to: [Minimum Age for WooCommerce] wrong datePlease contact me via my support form and detail your WordPress version, and exactly what you are seeing.
cheers,
RossForum: Plugins
In reply to: [Minimum Age for WooCommerce] wrong dateG’day zubkov,
Thanks for the bug report. Please try the latest version (1.0.16), it should fix this problem.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] how to get the access of wp-admin back?G’day Ban Sol,
Your website must have required the setting you changed from. Was it
HTTP_X_FORWARDED_PROTO? If it was, you can add these lines of code to your wp-config.php file near the top and it should fix the problem for you:if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') { $_SERVER['HTTPS'] = 'on'; }cheers,
RossForum: Plugins
In reply to: [Disable Emails] Does it send emails for the registration page?G’day Thorsten,
No, this plugin totally disables emails sent via WordPress email functions. It does not discriminate.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] SSL insecure pageG’day festanca,
Firstly, it’s safe to try the biggest level, you can always switch back from it. However, it probably won’t fix your problem.
I can see that your website is loading some font files over HTTP. Look at your custom font settings, and try editing / saving them again — it might fix the problem. If not, check with the developer of whatever is allowing you to load custom fonts — e.g. your theme, or a custom font plugin.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Changed Protocol, broke siteG’day daniocana,
Edit your wp-config.php file and add these lines near the top of the file:
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') { $_SERVER['HTTPS'] = 'on'; }This does exactly what the plugin does when you select that fix.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] Deleted Plugin: WordPress no longer sends any emails NEVER !That’s great news! Congratulations.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] Deleted Plugin: WordPress no longer sends any emails NEVER !Did you deactivate the plugin also? When the plugin is activated, it disable emails. You need to visit the Plugins page and deactivate the plugin.
If you would like me to look at your website, please contact me via my support form.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] Deleted Plugin: WordPress no longer sends any emails NEVER !G’day gotour,
It sounds like you have activated the Must-use plugin. Go to the plugin settings:
Settings > Disable Emails
Scroll to the bottom of that page, and click the button Deactivate must-use plugin.
You should now be able to deactivate / delete the plugin.
cheers,
RossForum: Plugins
In reply to: [Delete Expired Transients] deleted transients and now remain at 0?G’day deandid,
Do you have an object cache installed, like memcached or redis? If you do, you won’t see any new transients — they will all go into the object cache.
cheers,
Ross