Changeset 1469616
- Timestamp:
- 08/07/2016 05:22:42 PM (10 years ago)
- Location:
- wp-link-status/trunk
- Files:
-
- 5 edited
-
core/curl.php (modified) (1 diff)
-
core/nonce/nonce.php (modified) (1 diff)
-
core/requests/http.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-link-status.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-link-status/trunk/core/curl.php
r1348337 r1469616 74 74 } 75 75 76 // IP resolve options 77 if (!isset($setopts['CURLOPT_IPRESOLVE']) && defined('CURL_IPRESOLVE_V4')) 78 $setopts['CURLOPT_IPRESOLVE'] = CURL_IPRESOLVE_V4; 79 80 // HTTPS checks 81 if (!empty($setopts['CURLOPT_URL']) && 0 === strpos($setopts['CURLOPT_URL'], 'https')) { 82 if (!isset($setopts['CURLOPT_IPRESOLVE'])) 83 $setopts['CURLOPT_SSL_VERIFYHOST'] = false; 84 if (!isset($setopts['CURLOPT_SSL_VERIFYPEER'])) 85 $setopts['CURLOPT_SSL_VERIFYPEER'] = false; 86 } 87 76 88 // Apply options 77 89 foreach ($setopts as $name => $value) { -
wp-link-status/trunk/core/nonce/nonce.php
r1348337 r1469616 146 146 return false; 147 147 $result = @file_put_contents($path, "<?php /* Generated by WP Link Status: PLEASE DO NOT REMOVE OR MODIFY THIS FILE */"."\n"."define('WPLNST_SALT', '".self::generate_password(64, false, false)."');"); 148 @chmod($path, 06 64);148 @chmod($path, 0644); 149 149 return (false !== $result && @file_exists($path) && @is_readable($path)); 150 150 } -
wp-link-status/trunk/core/requests/http.php
r1348337 r1469616 109 109 'CURLOPT_WRITEFUNCTION' => 'wplnst_http_read_stream', 110 110 ); 111 112 // IP resolve options113 if (defined('CURL_IPRESOLVE_V4'))114 $curlopts['CURLOPT_IPRESOLVE'] = CURL_IPRESOLVE_V4;115 116 // HTTPS checks117 if (0 === strpos($url, 'https')) {118 $curlopts['CURLOPT_SSL_VERIFYHOST'] = false;119 $curlopts['CURLOPT_SSL_VERIFYPEER'] = false;120 }121 111 122 112 // Do the request -
wp-link-status/trunk/readme.txt
r1428137 r1469616 3 3 Tags: broken links, broken, links, crawler, headers, http, nofollow, redirections, scan, status, checker, url 4 4 Requires at least: 3.4 5 Tested up to: 4.5. 26 Stable tag: 1.0. 25 Tested up to: 4.5.3 6 Stable tag: 1.0.3 7 7 License: GPLv2 or later 8 8 … … 56 56 In the same way, if the site you are crawling implements browser password protection, you need to remove this password restriction in order to work properly. 57 57 58 = I have activated this plugin from a multisite but seems that it does not work. 59 60 Currently there is no support for network activation in multisite installs. The plugin needs to be activated locally for each single blog of your multisite. Otherwise, it is advisable to run only one scan at the same time per each blog or web server. 61 58 62 = This plugin works for ACF or Advanced Custom Fields as well? = 59 63 … … 73 77 74 78 == Changelog == 79 80 = 1.0.3 = 81 August 7th, 2016 82 83 * Changed permissions for generated files to avoid hosting conflicts like Hostgator. 84 * Fixed crawling process issues when running on HTTPS sites with or without valid certificate. 75 85 76 86 = 1.0.2 = -
wp-link-status/trunk/wp-link-status.php
r1428137 r1469616 4 4 Plugin URI: http://seedplugins.com/wp-link-status/ 5 5 Description: Check and manage HTTP response codes of all your content site links and images. 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: Pau Iglesias, SeedPlugins 8 8 License: GPLv2 or later … … 21 21 define('WPLNST_FILE', __FILE__); 22 22 define('WPLNST_PATH', dirname(WPLNST_FILE)); 23 define('WPLNST_VERSION', '1.0. 2');23 define('WPLNST_VERSION', '1.0.3'); 24 24 25 25 // Check scan crawling action
Note: See TracChangeset
for help on using the changeset viewer.