Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.9k Posts
  • Can you recommend a cheap CDN provider?

    2
    0 Votes
    2 Posts
    899 Views
    D
    CDN for what?
  • Email issues solved

    2
    0 Votes
    2 Posts
    661 Views
    ZQ-jhonZ
    Can you slove my trouble? https://community.nodebb.org/topic/12517/how-can-i-render-4-articles-from-common-category
  • how can i render 4 articles from common category ?

    1
    0 Votes
    1 Posts
    602 Views
    ZQ-jhonZ
    i want result like this: [image: pVQu4Zz.png] The four pics come form the common category , i render them the latest 4 items need i modify it's controller ? or other way ? thanks
  • Missing behaviour at registration - Email confirmation

    1
    0 Votes
    1 Posts
    532 Views
    TekinT
    What I did: Registered here with Github (social registration). I get automatically logged in. I directly went to my profile. Changed Username and Email (taken from Github). Now I saw the popup telling me that I still didn't confirm my email address. Checked my newly entered mailadress... nothing. Checked the mailaddress which came from Github. Yes a confirmation mail. Clicked on the link. "Invalid confirmation link". I needed to resend the confirmation email manually before I could post. What behaviour I would like to see: When I change my email address I need to get a new confrmation mail automatically (Opt-In active).
  • Group-based access to categories

    3
    0 Votes
    3 Posts
    1k Views
    thomas.picklesT
    I see now, I just need to add the group in. Thanks @baris!
  • 0 Votes
    1 Posts
    576 Views
    V
    Issue regarding creating node js blog module with express and jade template
  • 0 Votes
    2 Posts
    843 Views
    julianJ
    The "top downloads" pie chart is a little misleading, actually. The package manager itself doesn't have any visibility on package downloads because those are done through npm, and not nbbpm itself. What it does track is how many people ask nbbpm to suggest a version to download. For example, if you run v1.8.1 and you want to download a plugin, the latest version might not be compatible, so the ACP will query nbbpm for a suggested version. That's counted as a "download" (since the "suggest" call is done behind the scenes and is opaque to the end user). So you could be seeing true downloads... people downloading your plugins... or someone's just hammering GET /api/v1/suggest?package=nodebb-plugin-prometheus a lot
  • How to display user location in posts list and post page?

    2
    0 Votes
    2 Posts
    922 Views
    <baris>B
    It only returns a subset of user data https://github.com/NodeBB/NodeBB/blob/master/src/posts/user.js#L24-L28 If you want to add more you can do so in a plugin, using the hook filter:posts.modifyUserInfo
  • How to see what hooks are firing?

    9
    0 Votes
    9 Posts
    2k Views
    D
    If you want to filter for hooks you can just leave out the -v. It will exclude every line others than the ones that include the pattern. For example: ./nodebb dev | grep "plugins/fireHook] filter:parse.post" This would only show you lines that include this pattern. Again you can combine multiple patterns, just provide each via the -e argument. For example: ./nodebb dev | grep -e "plugins/fireHook] filter:parse.post" -e "plugins/fireHook] filter:users.get"
  • Chat button in composer has nothing to do with chat

    4
    0 Votes
    4 Posts
    1k Views
    PitaJP
    Yeah I agree, I think the chat icon is definitely wrong. I think we should have a minimize button on the composer itself, and have the button only show up when the composer is minimized.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    24 Views
  • Kubernetes Tools Visual Studio Code

    1
    0 Votes
    1 Posts
    1k Views
    K
    A Visual Studio Code extension for interacting with Kubernetes clusters. This extension combines the vs-kubernetes extension by @brendandburns and the vs-helm extension by @technosophos. Configuring Setting up your environment This extension assumes that you have a Dockerfile in the root directory of your project. It also assumes that you have the following binaries on your PATH: kubectl docker git helm (optional) draft (optional) For kubectl, helm and draft the binaries need not be on the system PATH, provided you tell the extension their locations using the appropriate vs-kubernetes -> vs-kubernetes.${tool}-path configuration setting. See "Extension Settings" below. The extension can install kubectl, helm and draft for you if they are missing - choose Install dependencies when you see an error notification for the missing tool. This will set kubectl-path, helm-path and draft-path entries in your configuration - the programs will not be installed on the system PATH, but this will be sufficient for them to work with the extension. If you are working with Azure Container Services or Azure Kubernetes Services, then you can install and configure kubectl using the Kubernetes: Add Existing Cluster command. If you plan to create managed clusters using Microsoft Azure (ACS or AKS), or to add clusters in those environments to your kubeconfig, then you will need Azure CLI 2.0.23 or above. You do not need Azure CLI if you do not use Azure, or to interact with Azure clusters that are already in your kubeconfig. Setting up your environment for Helm and Draft helm support requires that you have Helm installed and configured. To use the Helm: DryRun command, your Kubernetes cluster must be running Tiller. For setting up draft you can provide a path to the binary via configuration (vs-kubernetes.draft-path) if it is not on your PATH. Setting up the image repository path If you want to use the Kubernetes: Run and Kubernetes: Debug features then you need to have correctly set the user and repository for your images. You can do this via preferences in VS Code: File > Preferences And then add: { ... "vsdocker.imageUser": "<your-image-prefix-here>", ... } Where <your-image-prefix-here> is something like docker.io/brendanburns. Selecting a kubeconfig file By default, the extension uses the active kubeconfig file -- that is, the file to which the KUBECONFIG environment variable points, or the default kubeconfig if no KUBECONFIG environment variable exists. If you want to swap kubeconfig files, you can specify the file path in the vs-kubernetes.kubeconfig setting in your user or workspace settings. Running from source If you are building and running the extension from source, see CONTRIBUTING.md for prerequisites for the development environment. For more information click here
  • Change topics sorting in recent cards plugin

    4
    0 Votes
    4 Posts
    1k Views
    D
    Edit2: or maybe something like this topics.getLatestTidsFromSet('cid:1:tids', 0, -1, 'alltime', renderCards);
  • node.js/express/mongodb wait for query results

    3
    0 Votes
    3 Posts
    2k Views
    julianJ
    @PitaJ is correct. The database query is asynchronous, so you will need to use a callback: function queryDb(id, callback) { // query db callback(err, price); }
  • Shoutbox problem with time

    1
    0 Votes
    1 Posts
    654 Views
    M
    Hi! As you can see in the images, shoutbox shows wrong time. https://github.com/Schamper/nodebb-plugin-shoutbox [image: gXIFc7o.png] [image: lzFZRdw.png] [image: JJQvQWc.png]
  • Group mention and email

    2
    0 Votes
    2 Posts
    915 Views
    E
    I just tested this, group email actually works.
  • Animated profiles don’t work!

    3
    0 Votes
    3 Posts
    1k Views
    julianJ
    Thanks @Whimpers @AOKP -- yes it might actually be a bug, although we don't track it currently as it has not been reported on GitHub yet.
  • Strike Out Toic (mark as solved)

    2
    0 Votes
    2 Posts
    774 Views
    The WormsT
    Use plugin question : https://github.com/NodeBB/nodebb-plugin-question-and-answer Edit library.js change : topic.title = '<span class="answered"><i class="fa fa-question-circle"></i> Solved</span> ' + topic.title; by topic.title = '<span class="answered"><i class="fa fa-question-circle"></i> Solved</span> <strike>' + topic.title + '</strike>'; enjoy
  • Nginx for SSL in NodeBB

    8
    0 Votes
    8 Posts
    3k Views
    0xA4B160
    @julian Yes, figured that out the hard way lol
  • Hide topic for normal users

    3
    0 Votes
    3 Posts
    1k Views
    O
    @pitaj Right, Admins and Moderators can see deleted topics. I did not think about that. But do I also get a notification, when an Admin is replying to my deleted topic?