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

Wlork If, for example, I have 100 members, 500 topics.... Number of posts can be much more than 35000 ? Or it will already be considered as "too active"?

If you have more than 35 000 posts, then it will already be "too active", yes. Only one of the conditions is required for it to be considered "too active".

For completeness, here's how FreeFlarum currently determines forum activity (taken from FreeFlarum's closed source code), if that helps:

def check_forum_activity(forum: Forum) -> str:
    """
        Checks the activity of a forum.

        ### Returns:
        - `str`:
          - `"unused"` - forum has less than 2 posts or discussions or users and was created 60 days ago.
          - `"inactive"` - forum is inactive (admin was last seen before 60 days).
          - `"active"` - forum is active and healthy (all other cases).
          - `"very_active"` - forum is starting to be more active (more than 1 000 offline users, 5 000 discussions or 10 000 posts) and owner needs to be warned.
          - `"too_active"` - forum is too active and should be archived (more than 20 000 offline users, 20 000 discussions or 35 000 posts).
    """

    ... # variables for row counts and `admin_last_seen_at`

    if forum.created_at < (datetime.now() - timedelta(days=60)):
        if user_count < 2 or discussion_count < 2 or post_count < 2:
            return 'unused'

        if admin_last_seen_at is not None and admin_last_seen_at < (datetime.now() - timedelta(days=60)):
            return 'inactive'


    if user_count > 1000 or discussion_count > 5000 or post_count > 10000:
        return 'very_active'

    if user_count > 20000 or discussion_count > 20000 or post_count > 35000:
        return 'too_active'


    return 'active'

    I created a forum on Fleeforum! At least, to test and familiarize myself 🙂

    I have several questions about options (I hope, I'm the right place):

    • The "Like Preview" extension doesn't seem to work, it keeps loading:

    • Still on the official Flarum forum, you can see who is writing .... What is the mode that allows to do it?

    Thank you in advance 🙂

      luceos Thank, this extension isn't present in FreeFlarum 🙁

        Wlork as this extension is a premium extension it unfortunately is not available under FreeFlarum and would need to be purchased and hosted under your own hosting environment.

          katos Extension Pusher, what is it ? 🙂

          @SKevo Extension Link Preview has not been updated on FreeFlarium 😉
          FleeFlarium v0.1.4 and Flarium it's v 1.3.2

            Wlork Pusher enhances your forum with real-time capabilities (such as updating posts without needing to reload the page).

            As for link preview, I've updated it now because it was quite outdated, thanks for letting me know

              SKevo Thank you, it works 🙂

              For Pusher, I have activated it....

              There are fields :

              • App ID
              • App Key
              • App Secret
              • Cluster

              Should I fill them in ?

                Wlork the Pusher extension integrates the cloud service of the same name with Flarum. You need to register and create an app at https://pusher.com/ where you will receive your credentials. That company is not affiliated with Flarum or FreeFlarum, they just offer realtime services for developers. The Flarum team maintains an extension that's compatible with that service.

                Pusher is a paid service but a free tier is available that should be enough for most small forums.

                  clarkwinkelmann Thank you !

                  So, if I want updating posts without needing to reload the page, which extension (Free, preferably) do you recommend ?

                    Wlork for FreeFlarum, only the preinstalled Pusher extension is available at the moment. Its real-time capabilities should be enough to fit your needs. I wrote a more detailed post on how to set it up earlier here, not sure if it's still relevant though

                    @SKevo service down?
                    It doesn't matter, enjoy the Easter season with friends and family.

                      Trc4 service down?

                      Indeed... It appears that I will have to optimize the script that synchronizes all forums to use fewer MySQL queries :) It should be fixed now, sorry for the downtime

                      Trc4 It doesn't matter, enjoy the Easter season with friends and family.

                      Thank you, you too!

                        SKevo It should be fixed now, sorry for the downtime

                        Does not work for us. All Services down

                          @SKevo I just want to let you know that I'm getting 500 responses. If you need help whit certain tasks let me know 😉

                            @SKevo There are problems with the SSL/TLS certificate and our domain provider is redirecting us to you.

                              Found the error and fixed it. Was my fault. Thanks anyway