From 18dc4a1560c24ffd70d659ef1a96caf90ec9a4c8 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 3 Feb 2016 21:25:34 +0100 Subject: [PATCH] follow redirect, do not verify ssl certificates, use final after-redirect url --- bin/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/index.php b/bin/index.php index 8ac08ce..dd32dea 100755 --- a/bin/index.php +++ b/bin/index.php @@ -24,11 +24,11 @@ if ($existingDoc && $existingDoc->status == 'indexed') { } //FIXME: sourcetitle, sourcelink -//FIXME: enable redirects -//FIXME: enable ssl $req = new \HTTP_Request2($url); +$req->setConfig('follow_redirects', true); $req->setConfig('connect_timeout', 5); $req->setConfig('timeout', 10); +$req->setConfig('ssl_verify_peer', false); $res = $req->send(); //FIXME: try-catch @@ -49,7 +49,7 @@ if (!in_array($mimetype, $supportedIndexTypes)) { //FIXME: update index only if changed since last index time //FIXME: extract base url from html -//FIXME: use final URL after redirects +$url = $res->getEffectiveUrl(); $base = new \Net_URL2($url); $indexDoc = new \stdClass(); -- 2.30.2