• Resources
  • Free Flarum hosting on an expert platform by FreeFlarum.com

I just woke up to this:

I apologize for the downtime. Looks like I'll have to strengthen the protection ASAP

I am a user in Chinese Mainland. I just saw this post. Half an hour ago, I was discussing whether FreeFlarum had run away (after all, it was free) in the QQ group. I hope FreeFlarum can strengthen its protection capabilities against DDOS, otherwise FreeFlarum will definitely lose many high-quality users.

    Yanke_233 Forgot a sentence: Thank you to FreeFlarum for providing us with user maintenance at this time. We are now at noon. Because there is a time difference.

    Hi everyone, is everything ok as of now? I have an SSL error

    This site can’t provide a secure connection
    
    forum.asnuaps.it uses an unsupported protocol.
    ERR_SSL_VERSION_OR_CIPHER_MISMATCH

      arteteco yes, I've made some small experiments regarding DNS for *.freeflarum.com, which could've broken some custom domains. Are you using Cloudflare by any chance? I've reverted these changes now, so your forum should work

        Hi, I got an error when trying to access my forum faq.cyberguard.kz
        Error is 1014 cname cross-user banned. Can you make an exclusion to my website please

          oontsa hi, your forum CNAMEs to .flarum.cloud, which is now proxied as I mentioned above

          According to the docs, the correct way is to CNAME to .freeflarum.com. Please, update your CNAME record to use that instead, then your forum should work


          FYI this system will change in the future, as *.freeflarum.com will be proxied too and custom domains will need to be updated. But all will be announced later

          Is there a way I can make users only be able to login with an Oauth but give them the option to choose between multiple? Like I want users to only be able to sign up and login using Google and Twitter.

            Nziie AFAIK, using "Third Party Login Only" extension and configuring multiple FoF OAuth providers should work

              SKevo The “Third party log only” is just a url to redirect to, so it doesn’t support multiple. I just want the “Email/Username” and “Password” fields to be removed from both modals.

              Do you also know how I can change the font of my forum without self hosting?

              Do I have to self host to do that? My forum is a donation marked forum.

                Nziie in both instances, you should be able to use CSS to change the font and hide the login and password fields from the modals (although note that this is just a visual change, and it won't prevent people from logging in via password entirely)

                I unfortunately can't share the exact CSS code at the moment. I can look at it tomorrow, if you want

                  SKevo How do I do that since I’m not self hosting?

                    how can i change my admin password?

                      luceos What if I want to upload a custom font? or do I have to use google fonts?

                      Never mind

                      I am trying to edit the custom css with this code but it is keeping the original css, which I don't want the top line there.

                      Code:

                      p a {
                        color: #3c4be7;
                        line-height: 1.25;
                        place-self: center;
                        text-decoration: none;
                        position:relative;
                        &:after {
                          position: absolute;
                          content: "";
                          bottom: -3px;
                          left: 0;
                          width: 100%;
                          height: 1px;
                          border-bottom: 1px solid;
                          transform: scaleX(0);
                          transform-origin: 100% 100%;
                          transition: transform .6s;
                          transition-timing-function: cubic-bezier(.39,.575,.28,.995);
                        }
                        &:hover {
                          &:after {
                            transform: scaleX(1);
                            transform-origin: 0 0;
                          }
                        }
                      }

                      Can someone help me?
                      Image

                        Yolo in the login modal at your forum, click the "Forgot password?" link. If you are logged in, go to your Flarum account settings and click on the "Change Password" button

                        Nziie add !important; after the lines of code
                        Like this

                        p a {
                          color: #3c4be7 !important;
                          line-height: 1.25 !important;
                          place-self: center !important;
                          text-decoration: none !important;
                          position:relative !important;
                          &:after {
                            position: absolute !important;
                            content: "" !important;
                            bottom: -3px !important;
                            left: 0 !important;
                            width: 100% !important;
                            height: 1px !important;
                            border-bottom: 1px solid !important;
                            transform: scaleX(0) !important;
                            transform-origin: 100% 100% !important;
                            transition: transform .6s !important;
                            transition-timing-function: cubic-bezier(.39,.575,.28,.995) !important;
                          }
                          &:hover {
                            &:after {
                              transform: scaleX(1) !important;
                              transform-origin: 0 0 !important;
                            }
                          }
                        }