-
Notifications
You must be signed in to change notification settings - Fork 537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Use https
instead of http
as protocol in links to php.net
#623
Conversation
458f331
to
a2e67a2
Compare
This seems hard to review - not sure if it's worth it, given that most website maintainers will usually redirect from What do you think? |
It sure is a lot to review, but I like the idea behind this, that we gradually upgrade to HTTPS links. Some of the sites (such as We could also |
https
instead of http
as protocol in linkshttps
instead of http
as protocol in links to php.net
As far as I can see, php.net sites such as Looking at
So to summarize, I think we covered all php.net subdomains, and they all seem to be serving correctly over HTTPS (though, we could improve it). That said, the change set looks good :) Thank you. We might as well serve HSTS headers and preload it, but I'd be digressing, and might be better off discussing in a separate issue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All in all, I think this makes sense, although there might be more general issues here (I've commented on a few). Anyhow, these issues are unrelated, and switching the protocol can be done. Could you please fix the merge conflicts?
<a href="http://cvs.php.net/co.php/phpweb/Attic/release-3.0.txt?sa=1&login=2&r=1.2">Read | ||
<a href="https://cvs.php.net/co.php/phpweb/Attic/release-3.0.txt?sa=1&login=2&r=1.2">Read |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cvs.php.net is no longer abailable (for years?)
<a href="http://bugs.php.net/">http://bugs.php.net/</a>. | ||
<a href="https://bugs.php.net/">http://bugs.php.net/</a>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should point to issues, but likely more of that stuff can be removed, because the mirror program has been retired some years ago.
073628f
to
ea5f4e8
Compare
ea5f4e8
to
1473256
Compare
That is no longer true. |
1473256
to
f080270
Compare
This pull request
https
instead ofhttp
as protocol in links tophp.net
πββοΈ Not sure if this is a bit over the top, but I replaced
http://(.+\.)?php.net
withhttps://$1php.net
in PhpStorm.