March 25, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459


Vladimir Panteleev <thecybershadow@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WONTFIX                     |


--- Comment #10 from Vladimir Panteleev <thecybershadow@gmail.com> 2014-03-25 12:35:50 EET ---
That was not what I suggested.

This conversation is not headed into a constructive direction. Can we please reach a consensus before WONTFIX-ing the issue? Closed issues do not appear in most search results and get lost. Nothing is solved by closing it.

If you don't want to spend time on this issue, you can unassign and unsubscribe yourself from this issue. Someone else (e.g. I) can instead look into whether the problem is reproducible on a clean Bugzilla install, whether an upgrade will fix it (or if it's fixed when this instance is upgraded), follow up to the Bugzilla developers, etc. This bug can serve to track progress towards fixing the problem.

Please do not close issues unless they are fixed or can't be fixed. I don't see how doing so is useful.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 25, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459


Andrej Mitrovic <andrej.mitrovich@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andrej.mitrovich@gmail.com


--- Comment #11 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2014-03-25 13:33:22 CET ---
It's really a pain in the ass that every time I click on a bugzilla issue and try to comment, bugzilla tells me I'm not logged in even though I am.

The autotester seems to have the same issue, I have to click "Log in" multiple times per day for some reason, even though I never clear my cache or cookies.

It's just one of those little things that are a consistent annoyance to a fast workflow.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459


yebblies <yebblies@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |yebblies@gmail.com


--- Comment #12 from yebblies <yebblies@gmail.com> 2014-04-02 15:44:28 EST ---
This affects me too, and is quite annoying.  Is it possible to just redirect all http bugzilla urls to https?

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459


Infiltrator <lt.infiltrator@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lt.infiltrator@gmail.com


--- Comment #13 from Infiltrator <lt.infiltrator@gmail.com> 2014-04-01 21:52:01 PDT ---
I got here by following the #d dbot link and had to prefix the URL with 'https://' in order to be able to post this comment.  I think that that sums up my position on this issue.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #14 from Vladimir Panteleev <thecybershadow@gmail.com> 2014-04-02 08:08:25 EEST ---
I posted a client-side workaround here:

http://wiki.dlang.org/Bugzilla#Redirect_to_HTTPS

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #15 from Brad Roberts <braddr@puremagic.com> 2014-04-01 22:12:08 PDT ---
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.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #16 from Vladimir Panteleev <thecybershadow@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: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #17 from Brad Roberts <braddr@puremagic.com> 2014-04-01 22:19:48 PDT ---
It's a dlang.org php configuration issue, that the site admin is aware of, rather than a d.puremagic.com issue.  I don't know when it'll be fixed.  I pinged the email thread with him (and a couple others) just a moment ago.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #18 from Vladimir Panteleev <thecybershadow@gmail.com> 2014-04-02 08:22:32 EEST ---
Yes, understood. My suggestion was to work around the dlang.org configuration issue by not having it access Bugzilla HTTPS resources directly, but through a HTTP proxy, so that both dlang.org wouldn't need to be able to access HTTPS, and Bugzilla can be HTTPS-only.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 02, 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12459



--- Comment #19 from Brad Roberts <braddr@puremagic.com> 2014-04-01 22:28:31 PDT ---
certainly possible, but a pretty ugly hack to a fixable situation.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
1 2
Next ›   Last »