跳至内容
菜单
此问题已终结
1 回复
5107 查看

I've setup a nunber of events in our Odoo 8.0 system. These all display correctly in the events form on the backend. However any event falling in British Summer Time is show on the website with start and end times one hour behind those set in the backend.

I've tried changing the timezone settings on the user, the event and the system config and nothing seems to make the time on the website match the time in the backend.

We can change the backend time if we have to but this will get confusing for users having to remember that they are working in GMT / BST.

Any help would be greatly apprichiated.

Thanks

形象
丢弃

@Kieran, Just a hunch, it may have something to do with your server's system time settings. Please post back here with what system time settings you have setup as this may help in the troubleshooting process.

编写者

@Luke - Think I may have solved this one. I set the Public User timezone to Europe\London as well and that seems to have now given the correct display time for all events. The server timezone is set to UTC. With the events and the user timezone all being set to Europe\lLondon.

@Kieran, Good to hear you've figured it out.

最佳答案

You need to set the timezone for the Public user. By default the public user is hidden, so enable it in the datase, apply timezone and hide the public user:

su postgres  
psql
\c <database>

update res_users set active = True where login = 'public' ;

Under settings, users, clear the filter and apply correct timezone to the public user.

Hide public user after that:

 update res_users set active = False where login = 'public' ;
 \q

形象
丢弃

Hi I am having this same issue on an event website I am trying to set up, but I have odoo online, how do I enable the public user?

相关帖文 回复 查看 活动
1
3月 15
4415
2
4月 25
2383
1
3月 25
1333
2
3月 25
1404
1
7月 24
1454