Version Description
- Fix: Dropbox SSL3 verification issue.
Download this release
Release Info
Developer | infinitewp |
Plugin | InfiniteWP Client |
Version | 1.3.7 |
Comparing to | |
See all releases |
Code changes from version 1.3.6 to 1.3.7
- init.php +2 -2
- lib/dropbox.php +3 -3
- readme.txt +4 -1
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: InfiniteWP - Client
|
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
-
Version: 1.3.
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
@@ -26,7 +26,7 @@ Author URI: http://www.revmakx.com
|
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
-
define('IWP_MMB_CLIENT_VERSION', '1.3.
|
30 |
|
31 |
|
32 |
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
+
Version: 1.3.7
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
+
define('IWP_MMB_CLIENT_VERSION', '1.3.7');
|
30 |
|
31 |
|
32 |
|
lib/dropbox.php
CHANGED
@@ -182,7 +182,7 @@ class IWP_Dropbox {
|
|
182 |
curl_setopt($ch, CURLOPT_URL, self::API_URL . self::API_VERSION_URL . 'oauth/request_token' );
|
183 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
184 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
185 |
-
curl_setopt($ch, CURLOPT_SSLVERSION,
|
186 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
187 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
188 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
@@ -214,7 +214,7 @@ class IWP_Dropbox {
|
|
214 |
curl_setopt($ch, CURLOPT_URL, self::API_URL . self::API_VERSION_URL . 'oauth/access_token' );
|
215 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
216 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
217 |
-
curl_setopt($ch, CURLOPT_SSLVERSION,
|
218 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
219 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
220 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
@@ -266,7 +266,7 @@ class IWP_Dropbox {
|
|
266 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
267 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
268 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
269 |
-
curl_setopt($ch, CURLOPT_SSLVERSION,
|
270 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
271 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
272 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
182 |
curl_setopt($ch, CURLOPT_URL, self::API_URL . self::API_VERSION_URL . 'oauth/request_token' );
|
183 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
184 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
185 |
+
curl_setopt($ch, CURLOPT_SSLVERSION,1);
|
186 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
187 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
188 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
214 |
curl_setopt($ch, CURLOPT_URL, self::API_URL . self::API_VERSION_URL . 'oauth/access_token' );
|
215 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
216 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
217 |
+
curl_setopt($ch, CURLOPT_SSLVERSION,1);
|
218 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
219 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
220 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
266 |
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
|
267 |
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
|
268 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
269 |
+
curl_setopt($ch, CURLOPT_SSLVERSION,1);
|
270 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
271 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
272 |
if (is_file(dirname(__FILE__).'/amazon_s3/lib/requestcore/cacert.pem'))
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to:
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
@@ -48,6 +48,9 @@ Credits: [Vladimir Prelovac](http://prelovac.com/vladimir) for his worker plugin
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 1.3.6 =
|
52 |
* Fix: IWP's PCLZIP clash with other plugins. PCLZIP constants have been renamed to avoid further conflicts. This will fix empty folder error - "Error creating database backup folder (). Make sure you have correct write permissions."
|
53 |
* Fix: Amazon S3 related - Call to a member function list_parts() on a non-object in wp-content/plugins/iwp-client/backup.class.multicall.php on line 4587.
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.0.1
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.3.7 =
|
52 |
+
* Fix: Dropbox SSL3 verification issue.
|
53 |
+
|
54 |
= 1.3.6 =
|
55 |
* Fix: IWP's PCLZIP clash with other plugins. PCLZIP constants have been renamed to avoid further conflicts. This will fix empty folder error - "Error creating database backup folder (). Make sure you have correct write permissions."
|
56 |
* Fix: Amazon S3 related - Call to a member function list_parts() on a non-object in wp-content/plugins/iwp-client/backup.class.multicall.php on line 4587.
|