@baris Facing similar error when accessing /admin/advanced/database on v1.11
iTerm2.png
I see that V1.1.0 is released. Safe to upgrade from v1.0.3 ? Feel free to post issues in this thread!
@pichalite torpedoing our reputation since 2015
@julian just kidding
the image
I hope all my plugins work with v1.1.0 : Plugin list
I guess i will try to update tomorrow!
I only ran into a slight issue with invalid sessions due to a missing NGINX line.
But thanks to my darling (julian), I found the fix:
https://community.nodebb.org/topic/9027/solved-invalid-session-problem
@julian your stalker is back.
In other words
Add this in your nginx conf (Server block) (After X-Forwarded-For)
proxy_set_header X-Forwarded-Proto $scheme;
if you are using Nginx before NodeBB in all cases?
@Jenkler thats a good question. Maybe this is required for NGINX 1.10.1 and up.
At the moment i have
location /
{
proxy_http_version 1.1;
proxy_set_header Connection "upgrade";
proxy_pass http://forum-mammagrupper-com:4567;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
correct should be
location /
{
proxy_http_version 1.1;
proxy_set_header Connection "upgrade";
proxy_pass http://forum-mammagrupper-com:4567;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
}
Right? Is it safe to always have proxy_set_header X-Forwarded-Proto $scheme; set?
If something else looks crappy, feel free to point it out
emoji could not active after upgrade to 1.1.0
I am upgrading from 1.0.3 to 1.1.0, everything goes well except emoji plugin. Active button is unavailable, I clicked update files
, but it's processing with endless.
This is an old bug
If it now works, check the file perms (Nodebb user must have write access to everything). Later on you can restore your perms after updating and enable of emoj
My dev is updated now and no problems yet. Will continue to test ... I be Back !
We updated at MangoLassi and all seems well.
Works on all my 3 dev sites. Seams good !
Are there some notes on what was changed for 1.1?
@torn2 yeah, a changelog would be great
You can view the list of closed issues on github for a detailed insight.
A possible issue. I have created two new sets of topics and posts in v1.1.0
yet the category analytics do not indicate that. They continue to show zero new posts or topics. Are other people having this issue?
@rod It may be that the analytics haven't persisted to the database yet. They're stored temporarily in memory and pushed to the database periodically, so if you restart NodeBB in the interim, those analytics may be lost to the ether
@julian I will refrain from restarting v1.1.0
for a few hours now to let the software do what it is supposed to and, yes, I have been stopping and starting 1.1.0 many times as I change and look at things in my dev environment.