Page 2 of 8

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

Posted: Tue Jun 16, 2015 19:10
by HeroOfTheWinds
I think the email that is used to contact the administrators is broken. Before I was able to get back on, I tried emailing the admins via the "contact us" link, and after three days gmail said that mail couldn't be delivered. Might want to check that out too.

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

Posted: Fri Jun 19, 2015 12:11
by Iqualfragile
about the mmdb:
I was never able to precisely find the reason for it breaking, but i am quite sure it was the transistion from the old forum software to the new one, and some leftover restraints, so the setup was broken, not the software.
Do you still have a dump of the old tables or will it be a new setup?
When installing i recommend using commit 8784886457bdaf666a4915d71c11f5a8abedaead for now, all later commits are step by step removing the dependency on the phpbb accounts and adding own user management. That work will be continued, including adding the phpbb-accounts as one possible auth source, but currently only the dependency removal stuff has been finished.
I will continue working on the mmdb, updating to the latest dependencies, adding vcs and metalink/torrent support are currently on the todo (besides reworking the auth system), but i still have to do some things for university, so don't expect too much until in about a month.

@modders/tp-authors:
Sorry for the inconvenience, xyz and me just did not seem to get along too well, which kinda discouraged me from continuing to work on the project, but i am quite positive that this will change now that c55 is hosting the stuff.

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

Posted: Sun Jul 12, 2015 11:46
by Fixer
celeron55 wrote:The forum is now hosted by me.
Why there are two similarly looking minetest forums on the internet? %) I was baffled for 10 minutes figuring out where is my recent messages... and everything ends in june 2015... Google somehow redirected me to it.

I'm talking about http://forum.minetest.org/, why is it on?

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

Posted: Tue Jul 14, 2015 15:38
by Calinou
Fixerol wrote:Why there are two similarly looking minetest forums on the internet? %) I was baffled for 10 minutes figuring out where is my recent messages... and everything ends in june 2015... Google somehow redirected me to it.

I'm talking about http://forum.minetest.org/, why is it on?
It's a database backup.

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

Posted: Sat Jul 18, 2015 07:12
by ShadowNinja
celeron55 wrote:[PunBB compatibility has been fixed thanks to hacky code]
Here's a cleaner solution that I came up with that goes in your nginx config instead: http://sprunge.us/CTSV
This version also redirects you to the new URL instead of just showing the content at both URLs (just change "redirect" to "break" if you don't like that).
Note that this is untested though!

OldCoder: Your backup copy probably shouldn't be publicly available right now, to avoid confusing users and search engines.

EDIT: You should add viewforum compatibility too: http://sprunge.us/jEMH

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

Posted: 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:

    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:

    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)

Posted: 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)

Posted: 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)

Posted: 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)

Posted: 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)

Posted: 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)

Posted: 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

Posted: 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)

Posted: 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)

Posted: 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)

Posted: 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)

Posted: Thu May 05, 2016 22:57
by Fixer

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

Posted: 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)

Posted: 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)

Posted: 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)

Posted: 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.

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

Posted: Tue Apr 11, 2017 17:01
by Wuzzy
celeron55, just so you don't overlook it: I have sent you a PM about an user being unable to register an account. Details in the PM.

Posted: Wed Apr 12, 2017 18:29
by diogogomes
Is there any possibility of migrating the forum to Discourse?

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

Posted: Mon Apr 17, 2017 07:33
by nrz
i hope we never switch to discourse, nextcloud uses it and it's a unclear forum and has no advantage over phpbb

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

Posted: Mon Apr 17, 2017 08:32
by TumeniNodes
http://www.simplemachines.org/

I'll keep pushing this idea... ; )
I have used this in the past on 2 occasions with excellent experiences.

I consider it "THE" best forum software, and the support is tops
I really think, after the next release and people have more time (after some well deserved relaxation) I hope this could be looked at.

Discourse is too....., millennial : /