mvied
Forum Replies Created
-
Really, it should be changed to
/wordpress/wp-content/themes/gravy/images/form_logo_bkgrnd.pngso that it loads over HTTP or HTTPS appropriately.Only thing I know to cause this is an odd server configuration, or if you have Better WP Security installed, it can cause this as well. Does it happen on any page you secure?
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] PHP WarningTry uninstalling/reinstalling the plugin. I’m pretty sure I hotfixed this a while back. It can also be caused by a non-array value being stored in the database, so clearing the plugin settings should fix it.
It depends on how the call is constructed. What functions the code is using, etc. Although, it should be using admin_url() to build the AJAX URL. If you’re on an HTTPS page, AJAX URL’s should not be coming back as HTTP.
Have you tried uninstalling your current version, and then installing the newest? That should clear out any settings that may cause issues. Try that and let me know. If that doesn’t work, I’d like to take a look at your site to see what’s wrong.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] WordPress HTTPS (SSL) 2.0 brokenI currently do not have paid support, but I’m working on the infrastructure that it would take to do that the right way. I don’t want to offer paid support and not follow through with a great customer experience.
For the time being, I offer free support here, time willing. You can always donate if you’d like.
Try uninstalling/reinstalling the plugin. I’m pretty sure I hotfixed this a while back. It can also be caused by a non-array value being stored in the database, so clearing the plugin settings should fix it.
Or you could read the FAQ.
You could patch their plugin to use my SSL detection. Gravity Forms has done this.
if ( isset($wordpress_https) && method_exists($wordpress_https, 'is_ssl') ) { $is_ssl = $wordpress_https->is_ssl(); } else { $is_ssl = is_ssl(); }The plugin does not verify that the SSL certificate is valid, only that the resource exists. This issue is not very common and I don’t have a good solution in place, yet. Eventually I’m going to add in the concept of SSL Domain Mapping so that you could configure the plugin to take any occurrence of ‘http://ecx.images-amazon.com/’ on HTTPS pages to ‘https://images-na.ssl-images-amazon.com/’ automatically. You could configure this for any number of external domains.
This should be fixed in the next version. If you want, you can download the most current development version from https://github.com/Mvied/wordpress-https
The code changes external resources to HTTPS if fetching that resource does not produce a 404. Can you provide an actual example?
Any page that isn’t forced to HTTPS will be set to HTTP with that setting, so it’s doing what it’s supposed to do.
What are you trying to do?
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Insecure imagesWorking as intended. The plugin will not modify the contents of your posts if the image was uploaded using the Media Uploader. If the page being viewed publicly is HTTPS, the images will be auto-corrected. This can’t be done in the admin panel because it would involve editing the post to include an HTTPS image. If the public page is not HTTPS, there’s no reason to do that.
I actually caused a bug where links are being set to HTTP on sites that are entirely HTTPS when I fixed a typo fixing another bug. I’ll have another version out soon to fix it.