Index: trunk/extensions/CongressLookup/maintenance/checkContacts.php |
— | — | @@ -44,7 +44,12 @@ |
45 | 45 | } |
46 | 46 | |
47 | 47 | protected function checkContactLink( $name, $url, &$countOk ) { |
48 | | - $req = MWHttpRequest::factory( $url, array( 'method' => 'GET', 'timeout' => 6 ) ); |
| 48 | + $req = MWHttpRequest::factory( $url, array( |
| 49 | + 'method' => 'GET', |
| 50 | + 'timeout' => 8, |
| 51 | + 'sslVerifyHost' => false, // just check if it can be reached |
| 52 | + 'sslVerifyCert' => false, // just check if it can be reached |
| 53 | + ) ); |
49 | 54 | if ( $req->execute()->isOK() ) { |
50 | 55 | ++$countOk; |
51 | 56 | } else { |