[nodebb-plugin-finder] The plugin that finds and manages other plugins (Deprecated)

NodeBB Plugins

Suggested Topics


  • nodebb-plugin-session-sharing

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    714 Views

    after installing and activating from plugin section "nodebb-plugin-session-sharing" , i am always getiing locked out of my acp by 503 error. then i have to use" ./nodebb reset -p nodebb-plugin-session-sharing to restart".
    how to proceed?

  • 0 Votes
    1 Posts
    1k Views

    Hi! I'm searching for a Wiki Plugin/Widget for Nodebb.

    I'd like to have a Widget/Plugin with which I can see a list of "tools" and if I click one tool, there should be information fields, images and richtext for this specific item.

    Just like:

    Tool XYZ

    Imageslider: [Image] [Image]

    Name Category Year
    ...

    Infotext:

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus rhoncus nulla quis interdum feugiat. Sed eleifend mattis urna id dapibus. Morbi pharetra cursus lacus id bibendum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer in accumsan erat. Fusce maximus nulla libero, ac tincidunt erat maximus eget. Vestibulum laoreet ex diam, eget euismod augue porttitor eu.

    Aenean et felis et tortor aliquam eleifend nec non orci. Vivamus quis finibus turpis, sed congue lectus. Mauris eget rhoncus nulla, quis viverra ligula. Proin in magna gravida, malesuada dolor a, bibendum ex. Donec metus eros, dignissim eu lacus ut, volutpat iaculis mauris. Cras hendrerit metus quis nibh pretium suscipit et sit amet eros. Quisque scelerisque turpis erat, ac aliquet justo malesuada non. Aenean suscipit, ligula vitae scelerisque rutrum, massa sapien vulputate sem, eleifend iaculis augue quam in arcu. Sed eget dolor justo. Donec molestie vel tortor sit amet laoreet. Pellentesque ligula orci, venenatis et cursus eget, porta sit amet quam.

    Is there already something like that?

    Or do you have an idea how to do it?

  • Question about SSO plugin

    NodeBB Plugins
    2
    0 Votes
    2 Posts
    879 Views

    oh lt is easy to solve this question
    Go to redis
    Find the key of SSO plugins
    0_1446634268113_upload-b58be9b5-6919-474f-804d-1abdf02111cc
    copy that and add that in your ordinary
    0_1446634315164_upload-a4ca79f0-1802-4891-8712-170ff217560d
    0_1446635036399_upload-25edcd6e-2775-4cf4-9122-330cedb2f71c
    0_1446635056946_upload-d6b7373d-c40b-485b-bbb1-a8c55644d2f2
    0_1446635071909_upload-abb4f6b9-ecf7-4bec-b5e7-cffa4a0ac7eb
    Excellent!

  • 1 Votes
    1 Posts
    1k Views

    Hi,
    I noticed that the category description get's too big, when the redactor plugin is used:
    upload-b4843626-e37d-47d7-b305-b375eee292f4

    When the redactor composer is disabled and instead the markup composer is enabled, everything looks fine:
    upload-b52b8c2a-389a-42d7-ac09-8e4199e989f6

    It seems that the <p> tag gets lost somewhere...

  • 0 Votes
    1 Posts
    1k Views

    I am wanting to add some fields to the registration page, so I thought I'd write a plugin for it.

    It looks like the process would be:

    Add a 'filter:register.build' hook function to insert the html for the extra form inputs. Add a 'filter:user.custom_fields' function to insert the key/value to the userData object.

    I looked at the spam-be-gone plugin to get an understanding of how to go about it, but my question is: Is it possible to place my added field(s) at the top of the form -- or anywhere else -- rather than the bottom?

    I can also do this by adding my additional html into the register.tpl file and then adding the key/value to the userData object in /src/user/create.js, but I'd rather do it via a plugin as it seems cleaner. I don't need the data to appear on the site (i.e. the user's profile) so just these two things work fine.

    The problem is I believe I'd have to do a 'git pull --rebase' each time I wanted to get updates for nodebb which could break things over time. Seems hacky. Plus, it is more maintainable to keep my modifications modular.

    So, is there a better way? What's the best way to go about doing something like this? I'm just assuming that doing it via a plugin would be ideal, but if there are better options that are clean, then please let me know.

    Lastly, if I wanted to have a function run a check on this info for duplicates during the registration (exactly like the one for username) can you steer me in the right direction on how I'd go about it?

    Thanks!