Skip to content

nodebb-plugin-customize error

Solved Customisation
  • hello everyone, i have a problem with the nodebb-plugin-customize. When I edit a template, I get the error message when I save it

    ERROR
    request entity too large
    
  • @riekmedia First things first 🙂

    You may notice that in the profile page, you cannot click the dropdown menu (the button with the three dots)

    32aec8f1-6ce4-4232-936b-1cd483e4e776-image.png

    Clicking this button does nothing because the element sits behind the image meaning it is no longer clickable. The below CSS will fix that

    .btn-group.account-fab {
        z-index: 1000;
    }
    

    For the Groups issue, try this. Note that the background-image section of this will remove the actual image added by NodeBB, but will leave yours intact.

    @media (min-width: 992px) {
    .groups.details [component="groups/cover"] {
        background-size: auto;
        background-image: none !important;
    }
    }
    [component="groups/container"] {
        margin-top: 0px !important;
    }
  • @riekmedia You probably need to adjust the client_max_body_size directive in nginx.conf to be larger that what is already defined

    I’m making some assumptions here dependant on the version of Linux you are running (basing on Ubuntu), but this should help

    1. Edit the nginx.conf file as below
      sudo nano /etc/nginx/nginx.conf
    2. Locate the value client_max_body_size 2M; (note that it may be missing, or set higher than this value)
    3. Increase the value dependant on needs - for example, 20M
    4. Save the nginx.conf file
    5. Restart NGINX using service nginx reload or if using systemd, sudo systemctl reload nginx.service
  • @phenomlab i have this, not work, same error

    my complete nginx.conf

    user  nginx;
    worker_processes  auto;
    
    error_log  /var/log/nginx/error.log notice;
    pid        /var/run/nginx.pid;
    
    
    events {
        worker_connections  1024;
    }
    
    
    http {
        include       /etc/nginx/mime.types;
        default_type  application/octet-stream;
    
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  /var/log/nginx/access.log  main;
    
        sendfile        on;
        #tcp_nopush     on;
    
        client_max_body_size 50M;   <----  here the entry
    
        keepalive_timeout  65;
    
        #gzip  on;
    
        include /etc/nginx/conf.d/*.conf;
    }
    
    
  • @riekmedia Anything recorded in /var/log/nginx/error.log ?

  • @phenomlab no errors in the log file

    2021/10/19 14:00:52 [notice] 1984#1984: signal 15 (SIGTERM) received from 2037, exiting
    2021/10/19 14:00:52 [notice] 1985#1985: exiting
    2021/10/19 14:00:52 [notice] 1986#1986: exiting
    2021/10/19 14:00:52 [notice] 1985#1985: exit
    2021/10/19 14:00:52 [notice] 1986#1986: exit
    2021/10/19 14:00:52 [notice] 1984#1984: signal 15 (SIGTERM) received from 1, exiting
    2021/10/19 14:00:52 [notice] 1985#1985: signal 15 (SIGTERM) received from 1, exiting
    2021/10/19 14:00:52 [notice] 1986#1986: signal 15 (SIGTERM) received from 1, exiting
    2021/10/19 14:00:52 [notice] 1987#1987: signal 15 (SIGTERM) received from 1, exiting
    2021/10/19 14:00:52 [notice] 1987#1987: exiting
    2021/10/19 14:00:52 [notice] 1988#1988: signal 15 (SIGTERM) received from 1, exiting
    2021/10/19 14:00:52 [notice] 1988#1988: exiting
    2021/10/19 14:00:52 [notice] 1987#1987: exit
    2021/10/19 14:00:52 [notice] 1988#1988: exit
    2021/10/19 14:00:52 [notice] 1984#1984: signal 17 (SIGCHLD) received from 1988
    2021/10/19 14:00:52 [notice] 1984#1984: worker process 1985 exited with code 0
    2021/10/19 14:00:52 [notice] 1984#1984: worker process 1988 exited with code 0
    2021/10/19 14:00:52 [notice] 1984#1984: worker process 1986 exited with code 0
    2021/10/19 14:00:52 [notice] 1984#1984: worker process 1987 exited with code 0
    2021/10/19 14:00:52 [notice] 1984#1984: exit
    2021/10/19 14:00:52 [notice] 2038#2038: using the "epoll" event method
    2021/10/19 14:00:52 [notice] 2038#2038: nginx/1.21.3
    2021/10/19 14:00:52 [notice] 2038#2038: built by gcc 8.3.0 (Debian 8.3.0-6) 
    2021/10/19 14:00:52 [notice] 2038#2038: OS: Linux 4.19.0-17-amd64
    2021/10/19 14:00:52 [notice] 2038#2038: getrlimit(RLIMIT_NOFILE): 1024:524288
    2021/10/19 14:00:52 [notice] 2039#2039: start worker processes
    2021/10/19 14:00:52 [notice] 2039#2039: start worker process 2040
    2021/10/19 14:00:52 [notice] 2039#2039: start worker process 2041
    2021/10/19 14:00:52 [notice] 2039#2039: start worker process 2042
    2021/10/19 14:00:52 [notice] 2039#2039: start worker process 2043
    
    
  • @riekmedia Ok. I’d expect a different looking nginx.conf log rather than just the default. Are there any others ? For example, a file that contains items that look like the below

        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 https;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;
        proxy_redirect off;
    
        # Socket.io Support
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        location @nodebb {
            proxy_pass http://127.0.0.1:4567;
        }
    
  • @phenomlab yes that would be the default.conf where the domains are stored

    /etc/nginx/conf.d/default.conf

    server {
        listen       80;
        server_name  community.riekmedia.dev;
    
        root   /var/www/community/NodeBB;
        index  index.php index.html index.htm;
    
       location / {
        if ($request_uri ~ ^/(.*)\.html$) {
            return 302 /$1;
            }
        }
    
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /var/www;
        }
            location ~ \.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass   unix:/var/run/php/php8.0-fpm.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include        fastcgi_params;
    	
        }
    
    }
    
    
  • @riekmedia Ok, but there should be one at least for NodeBB to function properly

    The Nginx configuration file can be in multiple locations and can also include several other config files.

    To edit the nginx configuration file, first try here.

    sudo nano /etc/nginx/nginx.conf

    nginx.conf may also include some other config files, for example:

    sudo nano /etc/nginx/sites-enabled/default

    The config files may also be in the below locations (where example.com is your own domain)

    sudo nano /etc/nginx/sites-enabled/example.com

    If you can’t find Nginx config in the above location, try one of these:

    sudo nano /usr/local/nginx/conf/nginx.conf
    sudo nano /usr/local/etc/nginx/nginx.conf

    If you still can’t find it, try locate.

    locate nginx.conf

    To save file and exit in nano, press CTRL + X, press Y and then press ENTER)

    To check that the Nginx config file is valid after saving.

    sudo nginx -t

    If valid, reload Nginx service.

    sudo service nginx reload

  • @phenomlab none of that exists with me, only the 2 files. For me everything is just a minimal installation. nginx and php8 no more.

    Would you like to take a look at the server yourself?

  • @riekmedia Yes. Let me have a look

  • @phenomlab okay, i send PM

  • @riekmedia Looking at this further, I’m wondering if this setting in NodeBB has any relevance. It was set to 2Mb (2048Kb), so I’ve changed it to 32Mb (32768kb)

    5538887c-9216-4fcb-9f4b-a04fe58e39af-image.png

    Setting has been saved. Can you see if this fixes it ?

  • @phenomlab no the problem is still there

  • @riekmedia I’ve just managed to edit a template on your site (404.tpl), saved, and re-built assets with no issues ? What are you uploading into the file ?

  • @phenomlab I’m trying to edit group / details. Just change a ccs command style there.

    But even if you don’t change anything there and simply click on save, the error occurs

  • @riekmedia said in nodebb-plugin-customize error:

    I’m trying to edit group / details. Just change a ccs command style there.

    Can you let me know which template you’re seeing this on ?

  • @riekmedia I see what you mean - it only seems to be the one template though. I’m not surprised as this file is huge but I can’t see anywhere the setting can be adjusted unless it’s in the plugin itself.

  • @phenomlab I can’t tell you that 🙂 I know the plugin so far only since yesterday through you 🙂


Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

  • Nodebb icon on google page

    Solved Customisation
    9
    4 Votes
    9 Posts
    582 Views

    @Panda It’s been raised multiple times, but only for the open source version, and not hosted.

  • 0 Votes
    2 Posts
    457 Views

    @mventures said in NodeBB: Consent policy popup:

    How did you implement this consent pop-up?

    This is located in /admin/settings/cookies

    @mventures said in NodeBB: Consent policy popup:

    Does it appear every new day for a user who has accepted it?

    No. It places a cookie on the machine of the user who visits the site, and once they accept it, it doesn’t appear again unless you select

    0bda6e07-efca-4039-a132-c94060a6fec4-image.png

  • 1 Votes
    4 Posts
    474 Views

    @eeeee if you’re using the console, you could try

    node app.js > app.log 2>&1

    This would redirect stdout to a file named app.log and redirect stderr to stdout.

    I’m not sure about standard logging under NodeBB, but there is an error log located at logs/error.log.

    Failing that, you could always stop the NodeBB service then use ./nodebb dev from the console which would then provide debug output.

  • NodeBB Theme/Skin Switcher

    Solved Customisation
    38
    7 Votes
    38 Posts
    2k Views

    @Teemberland great spot ! You should create a PR for that so they can include it in the official repository.

    Just be aware that any subsequent releases will overwrite your fix without the PR.

  • 5 Votes
    29 Posts
    2k Views

    @phenomlab said in nodebb chat roll dice game:

    @DownPW I still think you could do something much quicker with jQuery.

    Why not but like I said, I have no skills to do that.

    If you are motivated, why not but I don’t want to bother you especially since it will only be for a certain period of time.

  • Social icon (Nodebb)

    Solved Customisation
    7
    0 Votes
    7 Posts
    913 Views

    @phenomlab said in Social icon (Nodebb):

    @jac I just tested my theory around using the OG image, and according to the Twitter card validator, it works fine

    73e805e1-997b-41bf-9259-51c5052ca8fc-image.png

    fixed 🙂

  • Display tweets in widget [NodeBB]

    Solved Customisation
    29
    4 Votes
    29 Posts
    2k Views

    @phenomlab brilliant, many thanks Mark 😁

  • NodeBB customisation

    Locked Customisation
    332
    27 Votes
    332 Posts
    71k Views

    @jac Given your departure away from your previous project, I’m going to close this thread… 🙂