Disable New Sign Ups?

Technical Support

Suggested Topics


  • Disable chat for moderators only

    Unsolved Technical Support
    0 Votes
    4 Posts
    312 Views

    @baris

    Thanks. I try to avoid plugins but you remind me that I should be looking.

  • 0 Votes
    3 Posts
    353 Views

    Yes! That's it, didn't realised grunt was setup in a way to pick-up custom themes. It's working like a charm!

    Thanks a lot @PitaJ !

  • 0 Votes
    28 Posts
    12k Views

    @Pramvir-Rathee here is my current Nginx config for the site.

    server { client_max_body_size 40M; listen 443 ssl; server_name community.bundystl.com; ssl on; ssl_certificate /etc/letsencrypt/live/bundystl.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/bundystl.com/privkey.pem; ssl_stapling on; ssl_stapling_verify on; ssl_protocols TLSv1.2 TLSv1.1 TLSv1; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /etc/ssl/certs/dhparam.pem; add_header Strict-Transport-Security "max-age=31536000; includeSubdomains"; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://10.254.0.35:4567; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } } server { client_max_body_size 40M; listen 80; server_name community.bundystl.com; rewrite ^ https://$server_name$request_uri? permanent; }
  • 0 Votes
    1 Posts
    1k Views

    When trying to create a new topic on mobile, it seemingly does nothing one first submit button press, and then on second shows "Category not found" error...
    Seems to only happen on mobile, tested on iOS chrome.

  • 0 Votes
    1 Posts
    1k Views

    I use a slightly modified version of lavender for my site, and up until now that's been quite a headache.

    I've had to maintain an entire theme which is just a fork of lavender and constantly merge in changes just so I can have one template file be slightly different.

    I was wondering if this is now something I can resolve with the baseTheme parameter?

    If MyTheme has a baseTheme of nodebb-theme-lavender, which in turn has a baseTheme of nodebb-theme-vanilla does that mean that I can change my repo to just be the one altered file?

    I remember in the past I tried inheritance and found it didn't work.