Version Description
- Bug fix.
Download this release
Release Info
Developer | Mvied |
Plugin | WordPress HTTPS (SSL) |
Version | 0.5.1 |
Comparing to | |
See all releases |
Code changes from version 0.5 to 0.5.1
- readme.txt +17 -15
- wordpress-https.php +1 -1
readme.txt
CHANGED
@@ -4,14 +4,12 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: encrypted, ssl, http, https
|
5 |
Requires at least: 2.1.0
|
6 |
Tested up to: 3.0.1
|
7 |
-
Stable tag: 0.5
|
8 |
|
9 |
-
This plugin ensures that
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
This plugin ensures that <em>all</em> elements on a page are accessed through HTTPS if the page is being accessed via HTTPS.
|
14 |
-
|
15 |
Some, but not all, plugins check for HTTPS when adding the extra scripts and stylesheets to your pages. The ones that do not will cause the page to be loaded insecurely. This is due to the way in which the plugin developer adds the elements to your pages.
|
16 |
|
17 |
Adding JavaScript files to the header and footer of your site by manually adding them to your template files with static URL's, or loading external scripts over HTTP such as JavaScript libraries from the <a href="http://code.google.com/apis/libraries/">Google Libraries API</a> will also cause this issue.
|
@@ -39,21 +37,25 @@ My plugin simply replaces HTTP with HTTPS in the source code where it needs to b
|
|
39 |
|
40 |
== Changelog ==
|
41 |
|
42 |
-
= 0.1 =
|
43 |
-
*
|
44 |
-
= 0.
|
45 |
-
*
|
46 |
-
= 0.3 =
|
47 |
-
* Added the option to change external elements to HTTPS if the external server allows the elements to be accessed via HTTPS.
|
48 |
= 0.4 =
|
49 |
* Plugin functions converted to OOP class.
|
50 |
* The plugin will now attempt to set the allow_url_fopen option to true with `ini_set` function if possible.
|
51 |
-
= 0.
|
52 |
-
*
|
|
|
|
|
|
|
|
|
53 |
|
54 |
== Upgrade Notice ==
|
55 |
|
56 |
-
= 0.
|
57 |
-
|
58 |
= 0.3 =
|
59 |
-
Version 0.3 gives you the option to change external elements to HTTPS if the external server allows the elements to be accessed via HTTPS.
|
|
|
|
4 |
Tags: encrypted, ssl, http, https
|
5 |
Requires at least: 2.1.0
|
6 |
Tested up to: 3.0.1
|
7 |
+
Stable tag: 0.5.1
|
8 |
|
9 |
+
This plugin ensures that all elements on a page are accessed through HTTPS if the page is being accessed via HTTPS.
|
10 |
|
11 |
== Description ==
|
12 |
|
|
|
|
|
13 |
Some, but not all, plugins check for HTTPS when adding the extra scripts and stylesheets to your pages. The ones that do not will cause the page to be loaded insecurely. This is due to the way in which the plugin developer adds the elements to your pages.
|
14 |
|
15 |
Adding JavaScript files to the header and footer of your site by manually adding them to your template files with static URL's, or loading external scripts over HTTP such as JavaScript libraries from the <a href="http://code.google.com/apis/libraries/">Google Libraries API</a> will also cause this issue.
|
37 |
|
38 |
== Changelog ==
|
39 |
|
40 |
+
= 0.5.1 =
|
41 |
+
* Bug fix.
|
42 |
+
= 0.5 =
|
43 |
+
* Due to increasing concerns about plugin performance, the option to bypass the HTTPS check on external elements has been added.
|
|
|
|
|
44 |
= 0.4 =
|
45 |
* Plugin functions converted to OOP class.
|
46 |
* The plugin will now attempt to set the allow_url_fopen option to true with `ini_set` function if possible.
|
47 |
+
= 0.3 =
|
48 |
+
* Added the option to change external elements to HTTPS if the external server allows the elements to be accessed via HTTPS.
|
49 |
+
= 0.2 =
|
50 |
+
* Changed the way in which HTTPS was detected to be more reliable.
|
51 |
+
= 0.1 =
|
52 |
+
* Initial Release.
|
53 |
|
54 |
== Upgrade Notice ==
|
55 |
|
56 |
+
= 0.5.1 =
|
57 |
+
Fixes `PHP Warning: Invalid argument supplied for foreach()` error.
|
58 |
= 0.3 =
|
59 |
+
Version 0.3 gives you the option to change external elements to HTTPS if the external server allows the elements to be accessed via HTTPS.
|
60 |
+
= 0.2 =
|
61 |
+
Version 0.1 did not correctly detect HTTPS on IIS and possibly other servers. Please update to version 0.2 to fix this issue.
|
wordpress-https.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WordPress HTTPS
|
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: This plugin ensures that <em>all</em> elements on a page are accessed through HTTPS if the page is being accessed via HTTPS.
|
6 |
Author: Mike Ems
|
7 |
-
Version: 0.5
|
8 |
Author URI: http://mvied.com/
|
9 |
*/
|
10 |
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: This plugin ensures that <em>all</em> elements on a page are accessed through HTTPS if the page is being accessed via HTTPS.
|
6 |
Author: Mike Ems
|
7 |
+
Version: 0.5.1
|
8 |
Author URI: http://mvied.com/
|
9 |
*/
|
10 |
|