webaware
Forum Replies Created
-
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Why the cookieHere’s a dev copy of the next version, with cookie removed. I hope to release it this week sometime.
https://www.dropbox.com/s/dr85e7xvwz8k662/ssl-insecure-content-fixer-2.6.0-dev.zip?dl=1
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Why the cookieG’day Juergen,
That cookie is used as a quick-and-dirty way to authenticate between the WordPress admin pages and the test scripts which live outside of WordPress in the plugin folders. It expires after 30 seconds and does not persist in the browser.
Nevertheless, I’ll be replacing it with a different method in the next release, due before the GDPR comes into effect.
cheers,
RossG’day duongcuong96,
Yes, have done something about more reliable cron triggering. That should hopefully keep things on track.
However, the issue is that because there was a failed complete backup, the file for that backup were incorporated into the following db-only backup. A failed backup should clean up its files, not leave them for the next backup. In this instance, it meant that what was intended to be a quick db-only backup became a lengthy complete backup in the middle of the day.
This could be avoided if either a failed backup cleaned up its files when detected, or if each new backup cleaned the temporary file area before commencing. The former approach would not impact general performance of the backups.
cheers,
RossForum: Plugins
In reply to: [Easy Digital Downloads Free Link] PDF opens in New PageG’day schroecw,
That totally depends on how the link is served. The link is a direct link to the file, so if you don’t do anything else, the file will be handled however the browser is configured (e.g. open in a viewer).
You can change that by adding this to a file named .htaccess in your uploads folder or wherever your pdf files are:
AddType application/octet-stream .pdfIn the next version of the plugin, I’ll look at adding an attribute to the link tag to ask the browser to download the file without requiring this. Unfortunately, that method doesn’t work in Internet Explorer.
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Redirect to Confirmation Page HelpG’day Tony,
You can have additional confirmations that work off conditional logic. Set up one for where the bank’s authorisation code (authcode) is empty. See this FAQ for my eWAY integration, it works much the same:
https://gfeway.webaware.net.au/faq/separate-success-and-fail-pages/
cheers,
RossForum: Plugins
In reply to: [Gravity Forms Eway] Compatibility Gravity Forms 2.3G’day svcrob,
Yes, compatible since v2.2.6 in September 2017.
I recommend you test GF 2.3 in a staging environment first, especially if you use other 3rd-party add-ons, because there are major changes in v2.3.
cheers,
RossForum: Plugins
In reply to: [Gravity Forms Eway] Take payment as the first step of a multipage formG’day briogroup,
Yes, the payment needs to be done from the last page in the form.
How I’d handle this is with two forms. The first form takes basic details and accepts payment, and the second form picks up from there and does the quiz/test. You can see how to chain forms in this Gravity Wiz post:
https://gravitywiz.com/how-to-populate-entry-data-from-one-form-into-another-using-gravity-forms/
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Payment Express TLS1.2 requirementG’day pengo,
My plugins all use the standard WordPress remote access methods, so they will maintain compatibility as long as your web server system software is up to date. You can easily test your web server to see if it supports TLS 1.2 by installing this plugin and running its test page:
https://ww.wp.xz.cn/plugins/tls-1-2-compatibility-test/
cheers,
RossSmells like a caching problem. Have you cleared your page cache? Does the problem return if you logout and access pages on http first instead of https?
Are you perhaps running W3 Total Cache? That plugin is notorious for stuffing up things like https. You will need to refer to their FAQs and support forums if so… or switch to something easier to configure and less likely to break.
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] V6111 and V6010 errorG’day brenc31,
I’ve retested with both Internet Explorer 11 and Edge, both had no problems.
I did notice a couple of issues on your site, however. Firstly, there are some JavaScript errors, including one generated by the WooCommerce script “credit-card-form.min.js” which may indicate a problem with your theme. Have you tried this on a staging site with a different theme?
Secondly, when I first visited your site, the expiry month/year wasn’t functioning correctly and that caused a failure because they went through as “1219” instead of “12 / 19”. Looking again just now, that’s working correctly, so perhaps you’ve fixed something there… or I was just lucky this time! Could be related to the error above.
I’ve just made some minor updates to the script for the checkout, if you’d like to test with those. They are related to credit card number validation so they might help with your Edge client.
https://www.dropbox.com/s/xtqkg9fqb4jls8l/eway-payment-gateway-4.2.1-dev.zip?dl=1
One final thing you could try is to switch from using the standard WooCommerce credit card fields to using the custom ones. That will remove the WooCommerce credit card fields script, which might be where your theme is conflicting.
WooCommerce > Settings > Checkout > eWAY > Credit card fields
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Map Not DisplayingThe
centerattribute is for coordinates only; what you want is theaddressattribute.https://flexible-map.webaware.net.au/manual/attribute-reference/#attr-address
[flexiblemap address="One World Trade Center" width="100%" height="250px" zoom="9″ icon="https://d100radio.com/wp-content/uploads/2018/01/map-marker-2-e1514859986341.png" title="D100 Radio, One World Trade Center" hidezooming="true" hidemaptype="true" showinfo="false"]cheers,
RossForum: Plugins
In reply to: [Flexible Map] Map Not DisplayingWhat is the shortcode? Looking at the map code, I can’t see an address or centre.
Forum: Plugins
In reply to: [Flexible Map] Language DirectionsThis must be done at the level of requesting the Google Maps API, so I haven’t done it in the plugin itself because of how it can interfere with multiple maps on the page. Normally, Google Maps will pick up the locale from your web browser and serve directions in your preferred language, but you can force it to use a specific language by specifying a language when loading the Google Maps API. There’s a filter hook in the plugin for this:
add_filter('flexmap_google_maps_api_args', function ($args) { $args['language'] = get_locale(); // or 'nl-NL' $args['region'] = 'NL'; return $args; });Add that to a simple plugin, or to your theme’s functions.php file.
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Travel modesNot currently, I’ll note as something to look at in a future version.
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Already using Google Maps APINo worries. If you want to prevent the error, however, to ensure that everything operates correctly, you can install this little plugin which will attempt to prevent script conflicts:
https://gist.github.com/webaware/3806a2dfdf2abcb61f64
cheers,
Ross