Skip to Content
मेन्यू
This question has been flagged
1 Reply
687 Views

I am having this issue on my on-premise database where order updates from PoS dont get updated real time on the kitchen display. I have to manually refresh the kitchen display's browser tab to get updates. 


I noticed it does not happen over http only https. I also noticed there is no issue with it on odoo online or odoo sh. Only on-premise deployment. It has been an issue since v17 and I had hoped it would get fixed it v18 but the issue is the same. I have contacted technical support but they give me generic answers like "install latest version of odoo". I have reinstalled multiple times. One other person said I should install a browser plugin that refreshes the page after regular intervals. 


Is there anyone with this issue or that is using kitchen display on-premise?



Avatar
Discard
Best Answer

Hii,
To fix real-time kitchen display updates over HTTPS in your on-premise Odoo:
Edit your Nginx config:
location /longpolling {

    proxy_pass http://127.0.0.1:8072;

    proxy_http_version 1.1;

    proxy_set_header Upgrade $http_upgrade;

    proxy_set_header Connection "upgrade";

    proxy_set_header Host $host;

}

In your odoo.conf file, make sure:
proxy_mode = True

longpolling_port = 8072


Restart services:
sudo systemctl restart nginx

sudo systemctl restart odoo


i hope it is use full

Avatar
Discard
Author

Hi. Thanks but this does not solve the issue

Related Posts Replies Views Activity
0
मार्च 24
1132
1
अग॰ 25
635
1
जुल॰ 25
873
3
जुल॰ 25
2992
3
मई 25
1605