WP Encryption – One Click Free SSL Certificate & SSL / HTTPS Redirect to fix Insecure Content - Version 5.7.6

Version Description

  • HTTP based domain verification - correct .txt extension
  • log pending authorizations when SSL domain verification fail
Download this release

Release Info

Developer gowebsmarty
Plugin Icon wp plugin WP Encryption – One Click Free SSL Certificate & SSL / HTTPS Redirect to fix Insecure Content
Version 5.7.6
Comparing to
See all releases

Code changes from version 5.7.5 to 5.7.6

Files changed (4) hide show
  1. admin/le_admin.php +7 -0
  2. classes/le-core.php +3 -0
  3. readme.txt +7 -10
  4. wp-letsencrypt.php +2 -2
admin/le_admin.php CHANGED
@@ -1276,6 +1276,13 @@ class WPLE_Admin
1276
  file_put_contents( $fpath . $ch['file'], trim( $ch['value'] ) );
1277
  }
1278
 
 
 
 
 
 
 
 
1279
  $check = LEFunctions::checkHTTPChallenge( $domain, $ch['file'], $ch['value'] );
1280
 
1281
  if ( !$check ) {
1276
  file_put_contents( $fpath . $ch['file'], trim( $ch['value'] ) );
1277
  }
1278
 
1279
+ $acmefilepath = $fpath . $ch['file'];
1280
+
1281
+ if ( file_exists( $acmefilepath . '.txt' ) ) {
1282
+ unlink( $acmefilepath . '.txt' );
1283
+ file_put_contents( $acmefilepath, trim( $ch['value'] ) );
1284
+ }
1285
+
1286
  $check = LEFunctions::checkHTTPChallenge( $domain, $ch['file'], $ch['value'] );
1287
 
1288
  if ( !$check ) {
classes/le-core.php CHANGED
@@ -332,6 +332,9 @@ class WPLE_Core
332
  'a',
333
  false
334
  );
 
 
 
335
  $this->wple_http_not_possible();
336
  $this->wple_log(
337
  '',
332
  'a',
333
  false
334
  );
335
+ if ( !empty($this->pendings) ) {
336
+ $this->wple_log( json_encode( $this->pendings ) );
337
+ }
338
  $this->wple_http_not_possible();
339
  $this->wple_log(
340
  '',
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === WP Encryption - One Click Free SSL Certificate & SSL / HTTPS Redirect to fix Insecure Content ===
2
  Contributors: gowebsmarty, gwsharsha
3
- Tags: ssl,https,ssl certificate,force ssl,mixed content,free ssl,https redirect,insecure content,simple ssl,lets encrypt,install ssl,security headers
4
  Requires at least: 4.2
5
  License: GPL3
6
  Tested up to: 5.9
7
  Requires PHP: 5.4
8
- Stable tag: 5.7.5
9
 
10
  SSL for lifetime - Install free SSL certificate & enable SSL / HTTPS sitewide, secure mail w/ HTTPS, HTTPS redirect, HSTS, insecure content scanner, SSL health meter, fix mixed content issues easily, download SSL certificate.
11
 
@@ -95,14 +95,7 @@ Our support staff is consisted of top notch developers and WordPress experts who
95
 
96
  = Translations =
97
 
98
- Many thanks to the generous efforts of our translators:
99
-
100
- * Korean (ko_KR) - [the Korean translation team](https://translate.wordpress.org/locale/ko/default/wp-plugins/wp-letsencrypt-ssl/)
101
- * Swedish (sv_SE) - [the Swedish translation team](https://translate.wordpress.org/locale/sv/default/wp-plugins/wp-letsencrypt-ssl/)
102
- * Spanish (es_ES) - [the Spanish translation team](https://translate.wordpress.org/locale/es/default/wp-plugins/wp-letsencrypt-ssl/)
103
- * Spanish (es_VE) - [the Venezuelan translation team](https://translate.wordpress.org/locale/es-ve/default/wp-plugins/wp-letsencrypt-ssl/)
104
- * Spanish (es_MX) - [the Mexican translation team](https://translate.wordpress.org/locale/es-mx/default/wp-plugins/wp-letsencrypt-ssl/)
105
- * French (fr_FR) - [the French translation team](https://translate.wordpress.org/locale/fr/default/wp-plugins/wp-letsencrypt-ssl/)
106
 
107
  If you would like to translate to your language, [Feel free to sign up and start translating!](https://translate.wordpress.org/projects/wp-plugins/wp-letsencrypt-ssl/)
108
 
@@ -196,6 +189,10 @@ Security is an important subject regarding SSL/TLS certificates, of course. It i
196
 
197
  == Changelog ==
198
 
 
 
 
 
199
  = 5.7.5 =
200
  * Remove certain options upon plugin deactivation
201
  * fopen error catch during ssl expiration check process
1
  === WP Encryption - One Click Free SSL Certificate & SSL / HTTPS Redirect to fix Insecure Content ===
2
  Contributors: gowebsmarty, gwsharsha
3
+ Tags: SSL,https,ssl certificate,free ssl,mixed content,force ssl,https redirect,insecure content,install ssl,security headers
4
  Requires at least: 4.2
5
  License: GPL3
6
  Tested up to: 5.9
7
  Requires PHP: 5.4
8
+ Stable tag: 5.7.6
9
 
10
  SSL for lifetime - Install free SSL certificate & enable SSL / HTTPS sitewide, secure mail w/ HTTPS, HTTPS redirect, HSTS, insecure content scanner, SSL health meter, fix mixed content issues easily, download SSL certificate.
11
 
95
 
96
  = Translations =
97
 
98
+ Many thanks to the generous efforts of our translators.
 
 
 
 
 
 
 
99
 
100
  If you would like to translate to your language, [Feel free to sign up and start translating!](https://translate.wordpress.org/projects/wp-plugins/wp-letsencrypt-ssl/)
101
 
189
 
190
  == Changelog ==
191
 
192
+ = 5.7.6 =
193
+ * HTTP based domain verification - correct .txt extension
194
+ * log pending authorizations when SSL domain verification fail
195
+
196
  = 5.7.5 =
197
  * Remove certain options upon plugin deactivation
198
  * fopen error catch during ssl expiration check process
wp-letsencrypt.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin Name: WP Encryption - One Click SSL & Force HTTPS
8
  * Plugin URI: https://wpencryption.com
9
  * Description: Secure your WordPress site with free SSL certificate and force HTTPS throughout the site. Just activating this plugin won't help! - Please run the SSL install form of WP Encryption found on left panel.
10
- * Version: 5.7.5
11
  * Author: Go Web Smarty
12
  * Author URI: https://wpencryption.com
13
  * License: GNU General Public License v3.0
@@ -33,7 +33,7 @@ if ( !defined( 'ABSPATH' ) ) {
33
  /**
34
  * Definitions
35
  */
36
- define( 'WPLE_PLUGIN_VERSION', '5.7.5' );
37
  define( 'WPLE_BASE', plugin_basename( __FILE__ ) );
38
  define( 'WPLE_DIR', plugin_dir_path( __FILE__ ) );
39
  define( 'WPLE_URL', plugin_dir_url( __FILE__ ) );
7
  * Plugin Name: WP Encryption - One Click SSL & Force HTTPS
8
  * Plugin URI: https://wpencryption.com
9
  * Description: Secure your WordPress site with free SSL certificate and force HTTPS throughout the site. Just activating this plugin won't help! - Please run the SSL install form of WP Encryption found on left panel.
10
+ * Version: 5.7.6
11
  * Author: Go Web Smarty
12
  * Author URI: https://wpencryption.com
13
  * License: GNU General Public License v3.0
33
  /**
34
  * Definitions
35
  */
36
+ define( 'WPLE_PLUGIN_VERSION', '5.7.6' );
37
  define( 'WPLE_BASE', plugin_basename( __FILE__ ) );
38
  define( 'WPLE_DIR', plugin_dir_path( __FILE__ ) );
39
  define( 'WPLE_URL', plugin_dir_url( __FILE__ ) );