Skip to content
  • 0 Votes
    1 Posts
    309 Views
    Varun Ganesh DV

    Hello @administrators

    Global Sidebar is coming below the global footer.

    actually it should come like Below the sidebar content footer should come.

    Mobile Screen. Footer content is Coming First and Sidebar Content Coming Next
    Screenshot from 2020-06-05 20-29-49.png
    Footer Contents in Computer Screen
    Also See Footer Content is Not Exactly in Middle when i add sidebar widgets
    Screenshot from 2020-06-05 20-29-31.png
    Sidebar Contents in Computer Screen
    Screenshot from 2020-06-05 20-29-28.png

    I think Some Bootstrap Layout issue if Bootstrap is Used.
    This issue only if i use Global Widget
    Please Consider it and Fix in Next Update

  • 0 Votes
    2 Posts
    644 Views
    julianJ

    Are you running this on your local machine? Do you have build-essentials installed?

  • 0 Votes
    8 Posts
    4k Views
    P

    @insuusvenerati try running ./nodebb build and then start NodeBB

  • 0 Votes
    17 Posts
    5k Views
    A

    My YouTube plugin needs updating. But I'm in London tomorrow to Thursday. Then spending alternate weeks in gibraltar. So its hard to find the time. ๐Ÿ˜‰

  • Unread page, weird behaviors

    Unsolved Bug Reports
    1
    0 Votes
    1 Posts
    1k Views
    N

    Try to select topic starters:

    Screen Shot 2015-10-08 at 9.59.02 AM.png

    Even more problems in Firefox 41 ๐Ÿ˜‰

  • Default Composer Issue

    Unsolved Bug Reports
    1
    0 Votes
    1 Posts
    1k Views
    N

    Guys, this problem also on this board:

    Link Preview Image Latest lines in composer are not clickable ยท Issue #6 ยท NodeBB/nodebb-plugin-composer-default

    Critical UX problem. Several latest lines in composer are not clickable.

    favicon

    GitHub (github.com)

  • Chats don't load

    Solved Bug Reports
    8
    0 Votes
    8 Posts
    4k Views
    N

    You did change by moving blocks under component, that is why It doesn't work for old themes.
    I have fixed problems.

  • JS Minification

    Plugin Development
    2
    0 Votes
    2 Posts
    2k Views
    N

    Same problem again...

    Actions that I have made to 'fix' this problem:

    Disable single plugin ./nodebb reset plugin="nodebb-widget-essentials" - No Success Disable all plugins - No Success Drop all collections in Mongo, and ./nodebb setup - No Success Delete nodebb.min.js from public directory - No Success Delete all public subdirectories that could be found in .gitignore - No Success Delete public directory and checkout latest from current branch - Success

    Maybe it will give you some insights ๐Ÿ˜‰

  • 0 Votes
    3 Posts
    2k Views
    barisB

    That error is caused by the following bit of code in src/plugins.js

    paths = paths.map(function(pluginLib) { var parent = path.dirname(pluginLib); return cached.filter(function(libPath) { return libPath.indexOf(parent) !== -1; }); }).reduce(function(prev, cur) { return prev.concat(cur); });

    If paths is an empty array calling reduce will throw that error. We should add better checks to detect that.

  • 0 Votes
    5 Posts
    3k Views
    barisB

    As mega said you need to add all users to a sorted set called users:reputation.

    So go through all your users and add their user ids to users:reputation with the score being their reputation.

  • 0 Votes
    16 Posts
    8k Views
    barisB

    That's an unrelated bug check here https://github.com/NodeBB/NodeBB/issues/2711

  • 0 Votes
    10 Posts
    4k Views
    julianJ

    @Tanner write API could help with that, but until then, here's the high-level implementation/workaround:

    FTPP (form-to-post plugin) establishes new POST route at /feedback When that route is called, take req.body.text (where text is the id in the corresponding form) and call Topic.post as a pre-registered user.

    That's pretty much it. There's more to expand on (such as spam prevention/throttling/auth/security), but yeah.