[Issue 12459] Bugzilla logs users in only on https site, and does not redirect from http to https

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Apr 1 22:16:56 PDT 2014


https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #16 from Vladimir Panteleev <thecybershadow at gmail.com> 2014-04-02 08:16:19 EEST ---
(In reply to comment #15)
> This would be fixed by switching the require ssl setting from 'authenticated'
> to 'ssl'.  However, doing this breaks dlang.org/bugstats.html (well, really,
> fetch-issue-cnt.php which that page uses) since the php install on dlang.org
> doesn't support https urls.

Hmm, does the puremagic server support it? I've encountered a similar problem
when trying to access HTTPS resources from D code. Ultimately I wrote a small
HTTP-to-HTTPS "proxy" page in PHP:

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://d.puremagic.com/issues/...whatever...");
curl_exec($ch);
curl_close($ch);

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list