Skip to content

Bug Reports

Found a bug? Why not make a bug report here?
1.2k Topics 7.3k Posts
  • [Solved] Bug in theme?

    8
    0 Votes
    8 Posts
    3k Views
    D

    Are you editing the .css files? If so then that's your problem - you need to edit the LESS files:

    http://community.nodebb.org/topic/305/themecss-question-re-fil

    Ohhh, I have read several times that it´s made with less... Thanks.

  • [Solved] nodebb crashing after pulling latest

    6
    0 Votes
    6 Posts
    2k Views
    P

    Glad you figured it out @skaughtx0r 🙂

  • [Solved] problem with move

    5
    0 Votes
    5 Posts
    2k Views
    M

    @baris OMG you're the best!!!! thank you dude

  • [Solved] Like button bug.

    11
    1 Votes
    11 Posts
    3k Views
    P

    @psychobunny Now it works!, thanks

  • Chats menu on Mobile

    1
    0 Votes
    1 Posts
    954 Views
    P

    Maybe in the new update or fix can add a chats inbox on mobile... to chat with friends or continue conversations

  • 0 Votes
    4 Posts
    5k Views
    anderson916A

    great hint.

  • This topic is deleted!

    Locked
    1
    0 Votes
    1 Posts
    8 Views
  • [Solved] Facebook SSO plugin error

    6
    0 Votes
    6 Posts
    2k Views
    H

    Awesome! 😄

  • NodeBB crash when using with mongoDB

    5
    0 Votes
    5 Posts
    2k Views
    A

    Here is the full log :

    Notif Obj function (cutoff) { if (process.env.NODE_ENV === 'development') { winston.info('[notifications.prune] Removing expired notifications from the database.'); } var today = new Date(), numPruned = 0; if (!cutoff) { cutoff = new Date(today.getFullYear(), today.getMonth(), today.getDate() - 7); } var cutoffTime = cutoff.getTime(); async.parallel({ "inboxes": function(next) { db.getSortedSetRange('users:joindate', 0, -1, function(err, uids) { if(err) { return next(err); } uids = uids.map(function(uid) { return 'uid:' + uid + ':notifications:unread'; }); next(null, uids); }); }, "expiredNids": function(next) { db.getSetMembers('notifications', function(err,nids) { async.filter(nids, function(nid, next) { db.getObjectField('notifications:' + nid, 'datetime', function(err, datetime) { if (parseInt(datetime, 10) < cutoffTime) { next(true); } else { next(false); } }); }, function(expiredNids) { next(null, expiredNids); }); }); } }, function(err, results) { if(err) { if (process.env.NODE_ENV === 'development') { winston.error('[notifications.prune] Ran into trouble pruning expired notifications. Stack trace to follow.'); winston.error(err.stack); } return; } async.eachSeries(results.expiredNids, function(nid, next) { db.sortedSetsScore(results.inboxes, nid, function(err, results) { if(err) { return next(err); } // If the notification is not present in any inbox, delete it altogether var expired = results.every(function(present) { return present === null; }); if (expired) { destroy(nid); numPruned++; } next(); }); }, function(err) { if (process.env.NODE_ENV === 'development') { winston.info('[notifications.prune] Notification pruning completed. ' + numPruned + ' expired notification' + (numPruned !== 1 ? 's' : '') + ' removed.'); } }); }); } D:\nuitInfo2013\forum\node_modules\mongodb\lib\mongodb\connection\base.js:242 throw message; ^ TypeError: undefined is not a function at Object.Notifications.init (D:\nuitInfo2013\forum\src\notifications.js:16:38) at D:\nuitInfo2013\forum\app.js:126:21 at D:\nuitInfo2013\forum\src\upgrade.js:26:4 at D:\nuitInfo2013\forum\src\database\mongo.js:309:4 at D:\nuitInfo2013\forum\src\database\mongo.js:342:4 at D:\nuitInfo2013\forum\node_modules\mongodb\lib\mongodb\collection\query.js:147:5 at Cursor.nextObject (D:\nuitInfo2013\forum\node_modules\mongodb\lib\mongodb\cursor.js:733:5) at commandHandler (D:\nuitInfo2013\forum\node_modules\mongodb\lib\mongodb\cursor.js:713:14) at D:\nuitInfo2013\forum\node_modules\mongodb\lib\mongodb\db.js:1806:9 at Server.Base._callHandler (D:\nuitInfo2013\forum\node_modules\mongodb\lib\ mongodb\connection\base.js:442:41)
  • Socket 'bug'

    8
    0 Votes
    8 Posts
    3k Views
    julianJ

    @pillows Maybe that would work... we use upgrade on our end, and it seems to be working fine. Worth a shot, though.

  • Outgoing Links Warning Page

    8
    0 Votes
    8 Posts
    2k Views
    julianJ

    @planner Hrm, okay, then that's definitely something that shouldn't be happening. Feel free to post an issue on our issue tracker, so we don't forget about this one.

    Edit: Thanks

  • Site not accessible after a "./nodebb upgrade"

    10
    0 Votes
    10 Posts
    3k Views
    julianJ

    @planner Glad it worked out okay 🙂

  • topic username teaser

    9
    0 Votes
    9 Posts
    3k Views
    J

    @baris said:

    Weird I'm not getting this at all. How about you @julianlam @psychobunny ?

    Haha... baris mentioned my twitter handle :wondering:

  • Error: Forbiden

    2
    0 Votes
    2 Posts
    1k Views
    B

    Link Preview Image connect Module, Error: Forbidden · Issue #702 · NodeBB/NodeBB

    occasionally, I see this, it doesn't crash NodeBB, but it annoys me info: [Auth] Session -R2aX7ifnT_L6bQ7vHUcXFqV logout (uid: 1) Error: Forbidden at Object.exports.error (/home/admin/NodeBB/node_modules/express/node_modules/connect/lib/...

    favicon

    GitHub (github.com)

  • Loading category image

    3
    0 Votes
    3 Posts
    1k Views
    F

    @baris said:

    As for image coming back after you upload an image it is not actually saved. You have to click save at the bottom of the page.

    I did click save before navigating away from the page.

  • This topic is deleted!

    Locked
    1
    0 Votes
    1 Posts
    3 Views
  • Error when logging in

    19
    0 Votes
    19 Posts
    6k Views
    L

    Hmm it worked out.. thks

  • Socket.IO Gateway Timeout

    2
    0 Votes
    2 Posts
    2k Views
    julianJ

    Looks like your web sockets are not working. Are you proxying requests using nginx? You need version 1.3.13 or later.

  • No minified client-side library warning

    10
    0 Votes
    10 Posts
    2k Views
    P

    that's an interesting plugin idea

  • Notification Bug

    12
    0 Votes
    12 Posts
    3k Views
    barisB

    When a topic is forked we should send a post to it by the user who forked it saying Forked this topic from <link to topic>