Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Tags
    3. issue
    Log in to post
    • Varun Ganesh D

      Mobile Responsive Issue on Sidebar and Footer
      Technical Support • bug bug on mobile screen issue mobile screen issue responsive • • Varun Ganesh D

      1
      0
      Votes
      1
      Posts
      15
      Views

      Varun Ganesh D

      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

    • meghanmullally

      Heroku deployment issue
      Technical Support • deployment help heroku issue • • meghanmullally

      2
      0
      Votes
      2
      Posts
      91
      Views

      julian

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

    • insuusvenerati

      Plugins and Themes not loading
      Technical Support • issue theme • • insuusvenerati

      8
      0
      Votes
      8
      Posts
      3166
      Views

      pichalite

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

    • Nicolas

      UNSOLVED Parsing posts and markdown plugin with auto-linking
      Plugin Development • conflict issue markdown parse • • Nicolas

      17
      0
      Votes
      17
      Posts
      3495
      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. 😉

    • Nicolas

      UNSOLVED Unread page, weird behaviors
      Bug Reports • issue • • Nicolas

      1
      0
      Votes
      1
      Posts
      911
      Views

      Nicolas

      Try to select topic starters:

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

      Even more problems in Firefox 41 😉

    • Nicolas

      UNSOLVED Default Composer Issue
      Bug Reports • composer issue • • Nicolas

      1
      0
      Votes
      1
      Posts
      1104
      Views

      Nicolas

      Guys, this problem also on this board:

      https://github.com/NodeBB/nodebb-plugin-composer-default/issues/6

      NicolasSiver created this issue in NodeBB/nodebb-plugin-composer-default closed Latest lines in composer are not clickable #6
    • Nicolas

      SOLVED Chats don't load
      Bug Reports • 0.8.2 chat error issue • • Nicolas

      8
      0
      Votes
      8
      Posts
      3006
      Views

      Nicolas

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

    • Nicolas

      JS Minification
      Plugin Development • issue nodebb • • Nicolas

      2
      0
      Votes
      2
      Posts
      1596
      Views

      Nicolas

      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 😉

    • Nicolas

      Plugin registration
      Plugin Development • issue plugin • • Nicolas

      3
      0
      Votes
      3
      Posts
      1786
      Views

      baris

      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.

    • Nicolas

      Reputation list sorting after import of users
      NodeBB Plugins • import issue reputatiton • • Nicolas

      5
      0
      Votes
      5
      Posts
      2189
      Views

      baris

      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.

    • Peter-Zoltan Keresztes

      uploaded profile image has bad URL
      General Discussion • image issue nodebb profile • • Peter-Zoltan Keresztes

      16
      0
      Votes
      16
      Posts
      6375
      Views

      baris

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

      joe1chen created this issue in NodeBB/NodeBB closed Ajaxify prevent default change breaks Admin link in navbar #2711
    • mootzville

      Bug / Issue Report Template
      Bug Reports • bug how-to issue report • • mootzville

      10
      0
      Votes
      10
      Posts
      3360
      Views

      julian

      @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.