-
Beta Was this translation helpful? Give feedback.
Replies: 15 comments
-
Thank you for opening a bug report. I was unable to reproduce the reported behavior on NetBox v3.0.4. Please re-confirm the reported behavior on the current stable release and adjust your post above as necessary. Remember to provide detailed steps that someone else can follow using a clean installation of NetBox to reproduce the issue. Remember to include the steps taken to create any initial objects or other data. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your answer & great job @jeremystretch. Unfortunately I can't provide you any details for a clean installation, it happened on our production installation. |
Beta Was this translation helpful? Give feedback.
-
Missing static stuff? Run a ./manage.py collectstatic Reset cache in your browser. Solved an similar issue when we upgraded from 2.11 |
Beta Was this translation helpful? Give feedback.
-
Thanks for your hint but that did nothing :/
Everyone in the company does have the same problem, so the browser cache shouldn't be a problem here. |
Beta Was this translation helpful? Give feedback.
-
What requests does your browser show when you open the page? Open the developer console (F12) and select the network tab, then refresh the page. You should see the initial request for the UI view followed by several REST API requests. What is the response status of each? |
Beta Was this translation helpful? Give feedback.
-
Every request is responded with a 200 OK but I don't see any REST API requests.. |
Beta Was this translation helpful? Give feedback.
-
Hold on here. 0 files copied? Did you answer yes? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
This is not my experience. If I run the command it always copies files. Just did a test on an existing installation, 406 files copied. And running it again showed the same. |
Beta Was this translation helpful? Give feedback.
-
Not sure what to tell you. This is how it works for me.
|
Beta Was this translation helpful? Give feedback.
-
Yes, I did answer it with a yes |
Beta Was this translation helpful? Give feedback.
-
@buenyX have you had any luck with this? I'm afraid there's not much more we can do to help absent instructions that can reproduce the issue. |
Beta Was this translation helpful? Give feedback.
-
Unfortuantely not but I'll try to dig more into this when I have some time. Are there any steps that you would recommend to start the analyze? I could upload our database to you if it would help to reproduce the issue. |
Beta Was this translation helpful? Give feedback.
-
Ok, I'm going to move this to a discussion as it's not currently reproducible. |
Beta Was this translation helpful? Give feedback.
-
I've found the cause of this issue... We had the following line in our nginx configuration: location / {
proxy_pass http://127.0.0.1:8001;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
#--> here comes the problem-causing line
proxy_cookie_path / "/; HTTPOnly; Secure";
#
} Removing Thank you all for your help! |
Beta Was this translation helpful? Give feedback.
I've found the cause of this issue...
We had the following line in our nginx configuration:
Removing
proxy_cookie_path
fixed the problem.Thank you all for your help!