[nodebb-plugin-blog-comments] Access-Control-Allow-Origin issue

NodeBB Plugins
  • am having this issue with a lighttpd reverse proxyed forum and my blog

    (index):1 XMLHttpRequest cannot load http://forum.domain.com/comments/get/114/0. The 'Access-Control-Allow-Origin' header contains multiple values ', undefined', but only one is allowed. Origin 'http://domain.com' is therefore not allowed access.

    lighttpd conf
    $HTTP["host"] == "forum.domain.com" { proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => "4567" ) ) ) }

  • Post the blog comments config from ACP please?


Suggested Topics


  • 0 Votes
    1 Posts
    234 Views

    What the title says: which would be the simplest plugin to start learning from?

    What I'm trying to accomplish is to create a MongoDB collection where to store some information, then execute all CRUD operations.

    LE: this should've been posted in plugins category.

  • 0 Votes
    2 Posts
    800 Views

    If reputation isn't increasing that's one issue, but if it's always showing the users as a guest, that's a different issue. "Guest" users will not get reputation because there's no user account.

  • 0 Votes
    2 Posts
    1k Views

    The logged in user should be app.user.uid, if you are visiting a user, the id should be ajaxify.data.theirid

    Here's a small script for you.

    <span id="myid" style="display:none;">My uid: </span> <span id="theirid" style="display:none;">Their uid: </span> <script> if (app.user.uid) { $('#myid').append(app.user.uid) $('#myid').show() } if (ajaxify.data.theirid) { $('#theirid').append(ajaxify.data.theirid) $('#theirid').show() } </script>
  • 14 Votes
    184 Posts
    123k Views

    Thank you @phenomlab

    No, I did not - The only thing I did was run npm install nodebb-plugin-poll. What's ACP and How do I enable the plugin in the ACP?

    Thank you!

  • 2 Votes
    15 Posts
    5k Views

    @julian

    How about a plugin to prune unverified registrations after X number, or should this be Core?