7 days later
5 days later

Very much a work in progress. Only opened it up to a couple of users to test while I style.

Using CSS filters to style the header above the hero (Currently blur and grey scale), plan to do random images up there from user submitted photos.

Using google fonts for a few of the headings and links, along with rounded corners on some buttons.
Using a hero image which I'm going to add a bit of custom CSS to to style and maybe randomise as well.

Loving the software so far!

Shahiem I think this project will be on hold for a bit. I have an other idea to make, an interactive role play Harry Potter forum (I'm big Harry Potter fan :-)).

I hope this will work out, see some previews below from what I had in mind. (for now) I'll post asap a preview of how it looks with Flarum.

(A work in progress)

2018, my Flarum forum is still up.

Offers: Forum, Screen Connect Remote Access, Nextcloud file hosting, Rocket-chat communication, dark theme with custom css modifications.

https://keys-daggers.org

Join and profit.

    5 days later

    https://whatsonyourscrubs.com - Nothing to fancy yet. I plan on playing around with it and trying different looks. I have an idea for a logo and will figure out a background. This is through siteground.com. It was way easier than I thought it was going to be to setup through them.

    Let me know what you all think so far.

    Thanks

    2/14/18 Made some cosmetic changes and added some extensions. If you check it out, let me know what you think.

    7 days later

    @Frink No need to make another post about your site when it was only mentioned five posts ago. ?

      7 days later

      I installed a small forum for testing yesterday, Im really impressed with flarum so far, feel free to post anything there.

      clanpyr.com/foro

      7 days later

      Sanguine

      Hmm now how to fix that?

      Update:
      Adding this to my nginx config helped.

      location / {
      try_files $uri $uri/ /index.php?$query_string;}
       error_page 418 = @index;
          # deny all direct access for these folders
      location ~* /(\.git|cache|bin|logs|backup|tests)/.*$ { return 418; }
      location ~ /(LICENSE\.txt|composer\.lock|composer\.json|nginx\.conf|web\.config|htaccess\.txt|\.htaccess) { return 418; }
      location = /robots.txt { access_log drops; log_not_found off; }
      location = /favicon.ico { access_log drops; log_not_found off; }
      location ~ /\. { access_log denied; log_not_found off; deny all; }
      location ~ ~$ { access_log denied; log_not_found off; deny all; }
      ....
      .....
      
          }

      Reference:
      getgrav/grav1625