Version Description
- [Bug] Patch issue causing insecure content errors. If you are still having issues after updating, please revert to 3.4.0 and let me know in the support forum.
Download this release
Release Info
Developer | Mvied |
Plugin | WordPress HTTPS (SSL) |
Version | 3.4.2 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.4.2
- readme.txt +16 -14
- wordpress-https.php +2 -2
readme.txt
CHANGED
@@ -4,25 +4,25 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: security, encryption, ssl, shared ssl, private ssl, public ssl, private ssl, http, https
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.9.1
|
7 |
-
Stable tag: 3.4.
|
8 |
License: GPLv3
|
9 |
|
10 |
WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.
|
11 |
|
12 |
== Description ==
|
13 |
-
|
14 |
-
|
15 |
-
<
|
16 |
-
|
17 |
-
|
18 |
-
<
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
|
27 |
== Installation ==
|
28 |
1. Upload the `wordpress-https` folder to the `/wp-content/plugins/` directory.
|
@@ -104,6 +104,8 @@ add_filter('force_ssl', 'store_force_ssl', 10, 3);`
|
|
104 |
2. Force SSL checkbox added to add/edit posts screen
|
105 |
|
106 |
== Changelog ==
|
|
|
|
|
107 |
= 3.4.1 =
|
108 |
* [Feature] Content Fixer is now optional in the plugin settings. This option should be on by default and is the preferred method to use the plugin.
|
109 |
* [Feature] Output buffering optional via `wordpress_https_parser_ob` filter. <a href="https://github.com/mvied/wordpress-https/issues/56">#56</a>
|
4 |
Tags: security, encryption, ssl, shared ssl, private ssl, public ssl, private ssl, http, https
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.9.1
|
7 |
+
Stable tag: 3.4.2
|
8 |
License: GPLv3
|
9 |
|
10 |
WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.
|
11 |
|
12 |
== Description ==
|
13 |
+
WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites. WordPress HTTPS is well-known for being the "heavy-hitter" of SSL plugins. The latest release focuses on speed and performance.
|
14 |
+
|
15 |
+
Read the <a href="http://wordpress.org/extend/plugins/wordpress-https/installation/">Installation Guide</a>. If after setting up the plugin you are experiencing issues, please check the <a href="http://wordpress.org/extend/plugins/wordpress-https/faq/">FAQ</a>. If you are still unable to resolve your issue, <a href="http://wordpress.org/support/plugin/wordpress-https">start a support topic</a> and someone from the community may be able to assist you. If you need immediate assistance, I am available for hire. Unfortunately, I do not have time to support the plugin for free.
|
16 |
+
|
17 |
+
If your SSL needs are simple, there are many fantastic, light-weight alternatives to WordPress HTTPS such as:
|
18 |
+
<a href="https://wordpress.org/plugins/really-simple-ssl/" target="_blank">Really Simple SSL</a> (great for securing the entire site)
|
19 |
+
<a href="https://wordpress.org/plugins/ssl-insecure-content-fixer/">SSL Insecure Content Fixer</a> (great at fixing most insecure content errors)
|
20 |
+
|
21 |
+
Contribute Code at <a href="https://github.com/Mvied/wordpress-https">https://github.com/Mvied/wordpress-https</a>
|
22 |
+
|
23 |
+
Issue Tracker at <a href="https://github.com/mvied/wordpress-https/issues">https://github.com/mvied/wordpress-https/issues</a>
|
24 |
+
|
25 |
+
Contribute Translations at <a href="https://translate.wordpress.org/projects/wp-plugins/wordpress-https">https://translate.wordpress.org/projects/wp-plugins/wordpress-https</a>
|
26 |
|
27 |
== Installation ==
|
28 |
1. Upload the `wordpress-https` folder to the `/wp-content/plugins/` directory.
|
104 |
2. Force SSL checkbox added to add/edit posts screen
|
105 |
|
106 |
== Changelog ==
|
107 |
+
= 3.4.2 =
|
108 |
+
* [Bug] Patch issue causing insecure content errors. If you are still having issues after updating, please revert to 3.4.0 and let me know in the support forum.
|
109 |
= 3.4.1 =
|
110 |
* [Feature] Content Fixer is now optional in the plugin settings. This option should be on by default and is the preferred method to use the plugin.
|
111 |
* [Feature] Output buffering optional via `wordpress_https_parser_ob` filter. <a href="https://github.com/mvied/wordpress-https/issues/56">#56</a>
|
wordpress-https.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.
|
6 |
Author: Mike Ems
|
7 |
-
Version: 3.4.
|
8 |
Author URI: http://mvied.com/
|
9 |
|
10 |
Text Domain: wordpress-https
|
@@ -54,7 +54,7 @@ spl_autoload_register('wphttps_autoloader');
|
|
54 |
if ( ! defined('WP_UNINSTALL_PLUGIN') ) {
|
55 |
$wordpress_https = new WordPressHTTPS;
|
56 |
$wordpress_https->setSlug('wordpress-https');
|
57 |
-
$wordpress_https->setVersion('3.4.
|
58 |
$wordpress_https->setLogger(Mvied_Logger::getInstance());
|
59 |
$wordpress_https->setDirectory(dirname(__FILE__));
|
60 |
$wordpress_https->setModuleDirectory(dirname(__FILE__) . '/lib/WordPressHTTPS/Module/');
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.
|
6 |
Author: Mike Ems
|
7 |
+
Version: 3.4.2
|
8 |
Author URI: http://mvied.com/
|
9 |
|
10 |
Text Domain: wordpress-https
|
54 |
if ( ! defined('WP_UNINSTALL_PLUGIN') ) {
|
55 |
$wordpress_https = new WordPressHTTPS;
|
56 |
$wordpress_https->setSlug('wordpress-https');
|
57 |
+
$wordpress_https->setVersion('3.4.2');
|
58 |
$wordpress_https->setLogger(Mvied_Logger::getInstance());
|
59 |
$wordpress_https->setDirectory(dirname(__FILE__));
|
60 |
$wordpress_https->setModuleDirectory(dirname(__FILE__) . '/lib/WordPressHTTPS/Module/');
|