There has been a lot of chit chat on coffee lately, I have just one question.

General Discussion

Suggested Topics


  • One profile for all users

    Unsolved General Discussion
    0 Votes
    2 Posts
    197 Views

    @levi-haviv Hi - it should be in the ACP - try

    https://your-domain/admin/settings/uploads#profile-covers

    Or Admin -> Settings -> Uploads -> Profile Covers

  • 0 Votes
    8 Posts
    771 Views

    Hello,

    I dropped all dbs (nodebb, local, config) and the ran mongorestore dump/ and it restored without warning or errors, but I still have issue.

    Also when I restart mongod, it fails now and it cannot connect to database. I think I should re-install it because I did not find a solution to fix it (database not running now).

    My question: would it work if beside restoring by mongorestore, I copy all files of /var/lib/mongod/ from old server to new one?

  • 0 Votes
    1 Posts
    963 Views

    Hi everyone,
    I use the sso plugin with wordpress and find it cannot log out at the same time. So I found that way. It might a little bit dangerous because it just delete cookie. Is there any other way to log out at same time?

    This is my way to logout

    Logout wordpress -> Delete Cookie of NodeBB -> return to nodebb homepage

    Step 1: create this php file under wordpress dir

    <?php require( dirname(__FILE__) . '/wp-load.php' ); wp_logout(); setcookie("express.sid", FALSE, time()-YEAR_IN_SECONDS, '', "~~FORUM_COOKIE_DOMAIN~~"); header("Location: http://~~FORUM_COOKIE_DOMAIN~~/"); exit;

    Step 2 : make NodeBB can access this file when logout
    When we logout form NodeBB, it send us to /logout and a string.
    So I use the nginx as proxy server to access php files. here is my config file of nginx

    location ~ .*\.php$ { rewrite ^/(.*) /$1 break; proxy_pass http://localhost:82; proxy_buffer_size 128k; proxy_buffers 32 32k; proxy_busy_buffers_size 128k; } location / { rewrite /logout http://~~~FORUM_DOMAIN~~~/logoutbbs.php break; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://io_nodes; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }
  • 0 Votes
    8 Posts
    2k Views

    @supersym Good point there, just, I don't know how Xenforo does it 😛

  • 0 Votes
    8 Posts
    2k Views

    @psychobunny said:

    sup. still working on ADR? I started porting it over to our forum at some point 🙂

    nah @psychobunny I been working on games here and there though. I also attempted something called "oRPG Creator" which I think I started way to late as it's built using older technologies. I just recently started a small "Text Based Game Engine" which will be using mostly jQuery/jQueryUI for the front end and PHP on back-end.