Fearless Forums
MyBB 2-Factor Authentication - Printable Version

+- Fearless Forums (https://fearlessrp.net)
+-- Forum: Community & Server Information (https://fearlessrp.net/forumdisplay.php?fid=1)
+--- Forum: News & Announcements (https://fearlessrp.net/forumdisplay.php?fid=2)
+---- Forum: Archive (https://fearlessrp.net/forumdisplay.php?fid=36)
+---- Thread: MyBB 2-Factor Authentication (/showthread.php?tid=74016)

Pages: 1 2 3 4


RE: MyBB 2-Factor Authentication - goigle! - 08-20-2016

You have 2 factor authentication yet you're still using HTTP and not forcing HTTPS (HTTPS doesn't appear to work properly)?


RE: MyBB 2-Factor Authentication - Nightmare - 08-21-2016

(08-12-2016, 03:56 PM)SnowredWolf Wrote: It seems like quite a few people have problems with the new Authenticator when trying to log in, if your code(s) doesn't work please try the steps underneath:

  1. Go in your google authenticator app and click on settings -> Time correction for codes -> Sync now
  2. Log in on the forums
If  the above doesn't work, try these steps
  1. Scroll to the bottom of the forums and find the current time.
  2. Go in your phone settings and change the time to match the forums
  3. Go in your google authenticator app and click on settings -> Time correction for codes -> Sync now
  4. log in on the forums

Or you know, don't use Google Auth full stop because it's unreliable as hell.

Go with Authy. A much better alternative plus allows for password protected cloud backups in the event you need to restore your phone.


RE: MyBB 2-Factor Authentication - Marty - 08-21-2016

I think the reason HTTPS doesn't work is because of the terrible coding of the theme.

I bet a lot of the images are links rather than local host files, thus not loading via HTTPS.


RE: MyBB 2-Factor Authentication - Nightmare - 08-21-2016

(08-21-2016, 11:20 AM)Marty Wrote: I think the reason HTTPS doesn't work is because of the terrible coding of the theme.

I bet a lot of the images are links rather than local host files, thus not loading via HTTPS.

Then perhaps it should be looked into. A lot of users I'm sure would definitely prefer to use HTTPS over HTTP.


RE: MyBB 2-Factor Authentication - Marty - 08-21-2016

I will look into it using inspect element. But in terms of fixing anything I wouldn't make a difference lol.


RE: MyBB 2-Factor Authentication - goigle! - 08-21-2016

(08-21-2016, 11:20 AM)Marty Wrote: I think the reason HTTPS doesn't work is because of the terrible coding of the theme.

I bet a lot of the images are links rather than local host files, thus not loading via HTTPS.

Nah, it's the way MyBB is set up. Board url is HTTP, it will tell the browser to grab it via HTTP and the browser will not for security purposes.

You don't need to use inspect element, open up the dev console.
Code:
[16:08:43.544] Blocked loading mixed active content "http://www.fearlessrp.net/css/colpick.css" @ https://fearlessrp.net/
[16:08:43.545] Blocked loading mixed active content "http://www.fearlessrp.net/jscripts/jquery.js?ver=1804" @ https://fearlessrp.net/
[16:08:43.545] Blocked loading mixed active content "http://www.fearlessrp.net/jscripts/jquery.plugins.min.js?ver=1800" @ https://fearlessrp.net/
[16:08:43.545] Blocked loading mixed active content "http://www.fearlessrp.net/jscripts/general.js?ver=1804" @ https://fearlessrp.net/
[16:08:43.545] Blocked loading mixed active content "http://www.fearlessrp.net/css.php?stylesheet=87" @ https://fearlessrp.net/
[16:08:43.545] Blocked loading mixed active content "http://www.fearlessrp.net/css.php?stylesheet=141" @ https://fearlessrp.net/
If you want, you can use inspect element and find those links mentioned and then edit them and your browser should then load them.


RE: MyBB 2-Factor Authentication - Cyclone - 08-22-2016

This could work.