- Edited
I just woke up to this:
I apologize for the downtime. Looks like I'll have to strengthen the protection ASAP
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
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.
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
how can i change my admin password?
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.
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?
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;
}
}
}