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

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;
                      }
                    }
                  }

                  @SKevo my site is not loading anymore. it is shown nothing

                  Update: Works again.

                    Trc4 I was cleaning up inactive forums with less than 2 posts to free up disk space until I migrate to a better hardware. Sorry for the downtime

                    Hi, I'm planning to migrate to self-hosted, how do I export the data in FreeFlarum into a zip file and upload it to the new server? (including extensions, posts, users, etc.)

                      SKevo Thank you! So, one more question, how to import csv files into new forum?

                        Leonart the CSV export is irrelevant, use the "Download Data" button above which contains the correct files required for import. I implemented CSV export on request of one forum, for Excel analysis purposes, and it's not meant for migration