Page 2 of 2

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Sat Jul 18, 2015 18:22
by ShadowNinja
Issues I've noticed:
  • The FAQ page returns a 403.
  • The PHP run time limit is set too low for a long-running database operation that I need to do (it needs to be set to a good 10-20 minutes or so, although it should probably be turned back down after I finish).
  • The SSL/TLS support is weak: https://www.ssllabs.com/ssltest/analyze ... netest.net
    To fix:
    Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
    Code: Select all
    # Disable insecure SSL protocols and TLSv1.1 (everything that supports v1.1 also supports v1, but too many browsers don't support  v1.2)
    ssl_protocols       TLSv1 TLSv1.2;
    # Generate this with `openssl dhparam 2048 -out dh.pem`
    ssl_dhparam         ssl/dh.pem;
    # This provides a pretty good compromise between security and compatability
    ssl_ciphers         EECDH+HIGH:EDH+HIGH:HIGH:!aNULL:!3DES:!CAMELLIA128;
    ssl_prefer_server_ciphers on;
    # Enable some caching for performance
    ssl_session_cache   shared:SSL:10m;
    ssl_session_timeout 5m;
  • The forum pulls images for the theme from the main site, which doesn't use SSL.
  • Performance: A few things require changing the theme, but this configuration should help a bit:
    Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
    Code: Select all
    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;

    gzip            on;
    gzip_vary       on;
    gzip_min_length 512;
    gzip_comp_level 4;
    gzip_disable    "msie6";
    gzip_proxied    any;
    gzip_types
       application/xml
       application/javascript
       application/x-javascript
       application/json
       application/vnd.ms-fontobject
       application/x-font-opentype
       application/x-font-truetype
       application/x-font-ttf
       font/eot
       font/opentype
       font/otf
       image/vnd.microsoft.icon
       image/svg+xml
       text/plain
       text/css
       text/javascript
       text/xml;

    server {
       location ~* \.(js|css|png|jpg|jpeg|gif|ico|ogg)$ { expires 1M; }
    }

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Thu Jul 30, 2015 20:30
by celeron55
Heard about an issue: "413 Request Entity Too Large (while making a post in "Post your screenshots"). client_max_body_size needs to be increased."

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Sat Aug 01, 2015 20:02
by Dragonop
I have this issue, I have seen it a total of 2 times, always related to Hybrid Dog's signature. I can keep reading all of the stuff, but when this happends the topic page gets a little messed up.
Topics I've found it on:
viewtopic.php?f=17&t=12039&start=25
And some other topic. I don't remember now. Will update if I remember where.
Image

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Fri Oct 23, 2015 16:58
by Wuzzy
Apparently I am not privileged enough to view the phpBB FAQ (link below the search box), since I get HTTP error 403 when trying to view it. :D

Also, the link “BBCode” next to the text field when you writing a new post gives me only a 403 error.

Here are the broken links:
https://forum.minetest.net/faq.php
https://forum.minetest.net/faq.php?mode=bbcode

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Sat Oct 31, 2015 17:37
by celeron55
Now faq.php doesn't result in 403.

I also moved the background image and favicon from the main site into the forum theme. (the main site didn't even have them anymore after it was moved to github pages.)

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Fri Nov 27, 2015 18:28
by Hybrid Dog
Could you add a setting to increase the default text size?

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Fri Nov 27, 2015 19:28
by kaadmy
Hybrid Dog wrote:Could you add a setting to increase the default text size?

Ctrl+Plus(+), or Ctrl+Shift+=

putin kommt drin vor

PostPosted: Fri Nov 27, 2015 20:23
by Hybrid Dog
kaadmy wrote:
Hybrid Dog wrote:Could you add a setting to increase the default text size?

Ctrl+Plus(+), or Ctrl+Shift+=

this also increases the frame where the text is put in and so less is shown on my screen

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Sat Nov 28, 2015 04:03
by addi
If you use the default phpBB style there is a option to change font size in the top right corner.
Image
I don't know if this also exist in Minetest style.

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Sat Nov 28, 2015 13:50
by Dragonop
It doesn't, it could be a nice adition tho

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Mon Jan 11, 2016 15:30
by Don
I was wondering if the "view new posts" link could be added to all pages instead of just on board index. I use that link a lot.

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Thu May 05, 2016 22:57
by Fixerol

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Thu May 05, 2016 23:37
by rubenwardy
All minetest.com addresses are unofficial.
minetest.org is unofficial
@minetest_c55 on twitter is unofficial
c55.me is marked "old minetest wiki" hence no longer official or the main one, as such.

------------------- ∴ --------------------

Minetest wikis:
http://wiki.minetest.net/Main_Page

Official sites:
http://minetest.net/

Official forums:
http://forum.minetest.net/

Twitters:
none

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Wed Jul 06, 2016 20:19
by CCM
celeron55 wrote:I hate phpBB, I hope you do too. It's a ridiculous clusterfuck hallmark of everything that is wrong in the PHP culture.


Why exactly are we on this forum service if you don't like it?

It doesn't make sense...

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Wed Jul 06, 2016 20:36
by rubenwardy
CCM wrote:
celeron55 wrote:I hate phpBB, I hope you do too. It's a ridiculous clusterfuck hallmark of everything that is wrong in the PHP culture.


Why exactly are we on this forum service if you don't like it?

It doesn't make sense...


Moderators

They weren't happy with the old system

Re: Forum is now hosted by celeron55 (report issues here)

PostPosted: Thu Jul 07, 2016 18:42
by CCM
rubenwardy wrote:
CCM wrote:
celeron55 wrote:I hate phpBB, I hope you do too. It's a ridiculous clusterfuck hallmark of everything that is wrong in the PHP culture.


Why exactly are we on this forum service if you don't like it?

It doesn't make sense...


Moderators

They weren't happy with the old system


Oh OK.