2020-07-30, 12:51 AM
(This post was last modified: 2020-07-30, 01:16 AM by chuzie. Edited 4 times in total.)
Running myBB 1.8.23
Setup HTTPS today per https://docs.mybb.com/1.8/administration...ity/https/
Got it working great and all tests pass on whynopadlock.com
No problem logging in to front end.
Unable to log in to adminCP but worked fine before HTTPS.
Keeps asking for username and password, both of which are correct.
Flushed cookies
Tried different browsers
Temporarily removed the protocol redirection from the config.php and logging in from HTTP and it works.
EDIT: I can login to cpAdmin but when I click any of the TABS I get kicked out and the login form says Invalid administration session.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.xxxxxx.com/$1 [R=301,L]
I also tried using this one instead...
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Clearly I screwed something up in the process.
Setup HTTPS today per https://docs.mybb.com/1.8/administration...ity/https/
Got it working great and all tests pass on whynopadlock.com
No problem logging in to front end.
Unable to log in to adminCP but worked fine before HTTPS.
Keeps asking for username and password, both of which are correct.
Flushed cookies
Tried different browsers
Temporarily removed the protocol redirection from the config.php and logging in from HTTP and it works.
EDIT: I can login to cpAdmin but when I click any of the TABS I get kicked out and the login form says Invalid administration session.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.xxxxxx.com/$1 [R=301,L]
I also tried using this one instead...
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Clearly I screwed something up in the process.