Learn about Centmin Mod LEMP Stack today
Become a Member

Burning Board WoltLab Burning Board

Discussion in 'Forum software usage' started by ModeltogTossen, Jan 7, 2016.

  1. ModeltogTossen

    ModeltogTossen I wish I could??

    313
    97
    28
    Dec 20, 2015
    Denmark
    Ratings:
    +143
    Local Time:
    4:31 AM
    1.9.12
    10.0.23
    Hi ..

    Is anyone here on this community using WoltLab Burning Board together with Centminmod..?

    If yes - which flavor of Centminmod and did you had to make any adjustment to get it running smoothly or did it just work out of the box?


    I'm not looking for help. Just consider to buy me one license and use it - but wish to be sure it works good with Centminmod before I order.

    Hope to hear from someone.. Thanks in advance.
     
  2. Ahmad

    Ahmad Active Member

    209
    80
    28
    Apr 13, 2015
    Ratings:
    +150
    Local Time:
    4:31 AM
    1.9.9
    10.1.10
    Never used it myself but I don't see any reason why it wouldn't work. Only thing is you might need to write nginx rules for friendly urls.
    Maybe you should ask them in the forum if nginx is supported?
     
  3. ModeltogTossen

    ModeltogTossen I wish I could??

    313
    97
    28
    Dec 20, 2015
    Denmark
    Ratings:
    +143
    Local Time:
    4:31 AM
    1.9.12
    10.0.23
    Nginx is indeed supported - and I see that something like the following should work for rewrite rules:

    Code:
    location / {
        index index.php;
        try_files $uri $uri/ @rewrite;
    }
    location @rewrite {
        rewrite ^/(wcf/|faq/|blog/)?([a-zA-Z0-9\-]+)/([^/]+)?/?$ /$1index.php?$2/$3 last;
    }
    
     
  4. eva2000

    eva2000 Administrator Staff Member

    54,909
    12,240
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,811
    Local Time:
    1:31 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  5. rdan

    rdan Well-Known Member

    5,447
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    11:31 AM
    Mainline
    10.2
    This doesn't work with latest RC.
     
  6. Colin

    Colin Premium Member Premium Member

    192
    59
    28
    Oct 7, 2015
    Sheffield UK
    Ratings:
    +154
    Local Time:
    3:31 AM
    1.19.#
    MariaDB 10.1.#
    The devs are great. Although I've not brought a license so not sure on support.

    They are forward thinking, opensource core, docker discussions.

    I was going to grab a license for the new release and begin to tinker ahead of a 2017 project. I've no doubt the support would be there.

    There was a beta release date locked somewhere. Might be withdrawn now it's near enough out, or is out.
     
  7. dooma

    dooma Active Member

    326
    34
    28
    Oct 15, 2016
    Cairo
    Ratings:
    +49
    Local Time:
    5:31 AM
    This will be helpful if you are using woltlab and want to use friendly URLs. You must move the second location block into the first in order to use woltlab friendly URLs to be like this :

    Code (Text):
    location / {
      include /usr/local/nginx/conf/503include-only.conf;
     
    # block common exploits, sql injections etc
    #include /usr/local/nginx/conf/block.conf;
     
      # Enables directory listings when index file not found
      #autoindex  on;
     
      # Shows file listing times as local time
      #autoindex_localtime on;
     
      # Wordpress Permalinks example
      #try_files $uri $uri/ /index.php?q=$uri&$args;
     
        index index.php;
     
        try_files $uri $uri/ @rewrite;
      }
     
    location @rewrite {
        rewrite ^/(forum/|cms/|wcf/|calendar/|filebase/|blog/|gallery/)?([^.]+)$ /$1index.php?$2 last;
    }