Skip to content
  • 0 Votes
    1 Posts
    379 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 [image: pw4vpV9.png] Footer Contents in Computer Screen Also See Footer Content is Not Exactly in Middle when i add sidebar widgets [image: aclif3K.png] Sidebar Contents in Computer Screen [image: JQ3KdKv.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
  • Heroku deployment issue

    Technical Support
    2
    0 Votes
    2 Posts
    710 Views
    julianJ
    Are you running this on your local machine? Do you have build-essentials installed?
  • Plugins and Themes not loading

    Moved Technical Support
    8
    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: [image: Te0lM0b.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: https://github.com/NodeBB/nodebb-plugin-composer-default/issues/6
  • 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
  • Plugin registration

    Plugin Development
    3
    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.
  • uploaded profile image has bad URL

    General Discussion
    16
    0 Votes
    16 Posts
    8k Views
    barisB
    That's an unrelated bug check here https://github.com/NodeBB/NodeBB/issues/2711
  • Bug / Issue Report Template

    Bug Reports
    10
    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.