Skip to content
  • -1 Votes
    8 Posts
    2k Views
    xinbenlvX

    Thank you for the idea of SEO.

    a. I agree with @julian there are philosophical disagreement
    b. agree, adding Google schema support could be built-in like we have seen FB open graph is built-in
    c. not a forum, try other software
    d. would be helpful, could be done by a plugin. Argueable could be built-in too, IMHO
    e. I have nothing against but I think it would be a large project because I could picture some addition live ML and log mining needs to be developed for this to be generalized, and could complicate the core NodeBB a lot.
    f. not a forum, sounds to me a social network
    g. has been done by plugin and you could pretty much develop it yourself.
    h. not thing against it, I think it currently works.
    i. it's more of a site operating and community engagement strategy
    j. not a forum
    k. Good idea, could be done by plugin
    l. This is already in place, right
    m. good idea. I don't see why not but I assume it already works
    n. same as k

  • Node BB app

    Technical Support
    12
    0 Votes
    12 Posts
    4k Views
    JenklerJ

    Nice, will take a look at that 😉

  • 0 Votes
    1 Posts
    2k Views
    MdghruutM

    I'm trying to create a user via php to be recognized by nodebb authentication form. I do this via predis, so I can talk to redis via php.
    This is the relevant part of the code that creates a user in redisdb for nodebb in php: http://pastebin.com/GZWFvuWc

    But sadly, when I tried to login with such created account via php it didn't work and said "User does not exists".
    I checked all 'legit' userdata with my userdata created by php and I can't detect any flaws

    This is what I told php to create in redis, it's all verified and there:

    populate 'user:#' with 22 key's where # is uid populate 'email:uid' with user email and uid populate 'group:registered-users:members' with uid populate 'users:joindate' with 0 and uid populate 'users:joindate' with 0 and uid populate 'users:postcount' with 0 and uid populate 'reputation' with 0 and uid populate 'username:uid' with username and uid populate 'userslug:uid' with userslug and uid

    What am I missing :C??? I checked redis and the data is all their, but nodebb says the user does not exists

    EDIT: I checked the users tab in admin and saw that the username is there that was created from php. After I press the save button on the profile edit page of that profile, that account can then login! how strange. I'm going to do more digging until someone knows what i'm missing here.

    EDIT 2: I forgot slugifying userslug:uid in redis. Finally fix it 🙂