Opened 9 years ago
Closed 9 years ago
#33976 closed defect (bug) (worksforme)
Support HTTPS & Reverse proxy at wp-admin
Reported by: | hideokamoto | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description
function pagination & function print_column_headers are not support HTTPS wp-admin address & Reverse proxy Server.
So, I wanna support them.
Attachments (1)
Change History (4)
#1
@
9 years ago
- Component changed from General to Administration
- Keywords reporter-feedback added
- Type changed from enhancement to defect (bug)
#2
@
9 years ago
#3
@
9 years ago
- Keywords reporter-feedback removed
- Milestone Awaiting Review deleted
- Resolution set to worksforme
- Status changed from new to closed
It's wrapped in a call to set_url_scheme()
, which converts the scheme to https
when is_ssl()
returns true, which it does when $_SERVER['HTTPS'] = 'on'
.
Note: See
TracTickets for help on using
tickets.
Thanks for the report, hideokamoto, and welcome to WordPress Trac.
Are you correctly setting the
$_SERVER['HTTPS']
variable in your wp-config.php file? If so, this change should not be required.More info here: https://codex.wordpress.org/Administration_Over_SSL#Using_a_Reverse_Proxy