From: Christian Weiske Date: Wed, 3 Feb 2016 20:25:34 +0000 (+0100) Subject: follow redirect, do not verify ssl certificates, use final after-redirect url X-Git-Tag: v0.1.0~24 X-Git-Url: https://git.cweiske.de/phinde.git/commitdiff_plain/18dc4a1560c24ffd70d659ef1a96caf90ec9a4c8 follow redirect, do not verify ssl certificates, use final after-redirect url --- 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();