Re: Default Time Zone in the Invite

2014-05-18 Thread Maxim Solodovnik
This is java file you need to change the code and recompile On Mon, May 19, 2014 at 1:13 PM, John Tran wrote: > Is this something I can in a config file somewhere? > org.apache.openmeetings.remote.MainService.getTimeZones > > > On Sun, May 18, 2014 at 10:41 PM, Maxim Solodovnik > wrote: > >> C

Re: Default Time Zone in the Invite

2014-05-18 Thread John Tran
Is this something I can in a config file somewhere? org.apache.openmeetings.remote.MainService.getTimeZones On Sun, May 18, 2014 at 10:41 PM, Maxim Solodovnik wrote: > Currently time zone list is being taken from java > TZ of client browser is selected by default > > you can change the order (ap

Re: Default Time Zone in the Invite

2014-05-18 Thread Maxim Solodovnik
Currently time zone list is being taken from java TZ of client browser is selected by default you can change the order (apply custom sorting) in org.apache.openmeetings.remote.MainService.getTimeZones On Mon, May 19, 2014 at 12:30 PM, John Tran wrote: > Maxim > > Back in 08/22/13 you gave me s

Default Time Zone in the Invite

2014-05-18 Thread John Tran
Maxim Back in 08/22/13 you gave me some instruction to change the default time in the invite for OM 2.x.x. Has this change in OM 3.x.x? I am getting the ERROR 1146 (42S02): Table 'openmeetings.om_timezone' doesn't exist message. How would you do this in OM 3.x.x. ? =

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Maxim - No Worries, I swap the order_id of Samoa and Los Angeles and it worked. On Thu, Aug 22, 2013 at 10:07 PM, John Tran wrote: > Yes. > > result below > mysql> select * from om_timezone where id = 42; > > ++-+-+---+---

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Yes. result below mysql> select * from om_timezone where id = 42; ++-+-+---++--+ | id | ical| inserted| jname | label | order

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
have you restarted OM? what is the result of following SQL: select * from om_timezone where id = 42; On Fri, Aug 23, 2013 at 12:00 PM, John Tran wrote: > No change, it still the same. Samoa TZ still at the top or default. > > > On Thu, Aug 22, 2013 at 9:50 PM, Maxim Solodovnik wrote: > >> upd

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
No change, it still the same. Samoa TZ still at the top or default. On Thu, Aug 22, 2013 at 9:50 PM, Maxim Solodovnik wrote: > update om_timezone set order_id = 32 where id = 42; > > > On Fri, Aug 23, 2013 at 11:49 AM, John Tran wrote: > >> Maxim >> >> From the below: >> | 39 | Alberta, Colora

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
update om_timezone set order_id = 32 where id = 42; On Fri, Aug 23, 2013 at 11:49 AM, John Tran wrote: > Maxim > > From the below: > | 39 | Alberta, Colorado, > Phoenix | 25 | > | 40 | Canada (Alberta), Mexico (Chihuahua), USA > (Colorado)

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Maxim >From the below: | 39 | Alberta, Colorado, Phoenix | 25 | | 40 | Canada (Alberta), Mexico (Chihuahua), USA (Colorado) | 26 | | 41 | Canada (northeastern British Columbia), Mexico (Sonora), USA (Arizona)

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
timezone.xml is used while installing only On Fri, Aug 23, 2013 at 11:38 AM, John Tran wrote: > Will tr the DB edit. Do still need to make a change in timezone.xml too or > leave it as default? > > > On Thu, Aug 22, 2013 at 9:28 PM, Maxim Solodovnik wrote: > >> stop OM >> >> open connection to

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Will tr the DB edit. Do still need to make a change in timezone.xml too or leave it as default? On Thu, Aug 22, 2013 at 9:28 PM, Maxim Solodovnik wrote: > stop OM > > open connection to your database using anything you like > run following > select id, label, order_id from om_timezone; > this wi

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
stop OM open connection to your database using anything you like run following select id, label, order_id from om_timezone; this will give you the full list on timezones update om_timezone set order_id = 32 where id = 41; to set highest order for your timezone start OM On Fri, Aug 23, 2013 at

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Oh. I am using MySQL. On Thu, Aug 22, 2013 at 9:17 PM, Maxim Solodovnik wrote: > unfortunately it is not enough :( > What DB are you using? > > > On Fri, Aug 23, 2013 at 11:15 AM, John Tran wrote: > >> Not in DB, i wouldnt' know how. I make the change in >> usr/lib/red5/webapps/ >> openmeetin

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
unfortunately it is not enough :( What DB are you using? On Fri, Aug 23, 2013 at 11:15 AM, John Tran wrote: > Not in DB, i wouldnt' know how. I make the change in usr/lib/red5/webapps/ > openmeetings/languages/timezones.xml and move GMT-8 to the top of the > list, above Samoa and change the o

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Not in DB, i wouldnt' know how. I make the change in usr/lib/red5/webapps/ openmeetings/languages/timezones.xml and move GMT-8 to the top of the list, above Samoa and change the orderId to 0(zero) and restart red5 On Thu, Aug 22, 2013 at 9:12 PM, Maxim Solodovnik wrote: > did you moved it in t

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
did you moved it in timezones.xml or in the DB? have you just change the line? or also change "orderId" value? On Fri, Aug 23, 2013 at 11:04 AM, John Tran wrote: > I am on GMT-8. I did move it to the top of the list and changed it to > 0(zero). It did not help. Still showed Samoa as the fi

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
I am on GMT-8. I did move it to the top of the list and changed it to 0(zero). It did not help. Still showed Samoa as the first on the list as default. On Thu, Aug 22, 2013 at 9:00 PM, Maxim Solodovnik wrote: > First one is selected in case timezone offset was not retrieved or > timezone wi

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
First one is selected in case timezone offset was not retrieved or timezone with your offset was not found. Also you can check browser javascript console (to ensure there were no errors) What Time Zone do you have? To move you timezone on top you might need to edit database and change orderId of y

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Maxim It does not seem to pick it up for whatever reason. When I do an invite an pick a "period" option, it default to GMT+13 (Samoa), first one on the list. -john- On Thu, Aug 22, 2013 at 8:46 PM, Maxim Solodovnik wrote: > according to the code: > Timezone offset is taking from your browser >

Re: Default Time Zone in the Invite

2013-08-22 Thread Maxim Solodovnik
according to the code: Timezone offset is taking from your browser Timezone with your timezone offset is preselected On Fri, Aug 23, 2013 at 7:52 AM, John Tran wrote: > Thanks Lee. Already tried that. > > > On Thu, Aug 22, 2013 at 4:45 PM, Lee Saunders < > leesenglishless...@gmail.com> wrote:

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Thanks Lee. Already tried that. On Thu, Aug 22, 2013 at 4:45 PM, Lee Saunders wrote: > Go here: \webapps\openmeetings\languages\timezones.xml. You can change the > order in that. > > > On Fri, Aug 23, 2013 at 12:04 AM, Lee Saunders < > leesenglishless...@gmail.com> wrote: > >> I could find the

Re: Default Time Zone in the Invite

2013-08-22 Thread Lee Saunders
Go here: \webapps\openmeetings\languages\timezones.xml. You can change the order in that. On Fri, Aug 23, 2013 at 12:04 AM, Lee Saunders wrote: > I could find the default time zone in Administration > Configuration > > Number 30 in the list. > There is no selection box to change it though. > >

Re: Default Time Zone in the Invite

2013-08-22 Thread John Tran
Right but that does not apply to the timezone in the invitation dialog box. It's default to GMT+13(Samoa). On Thu, Aug 22, 2013 at 4:04 PM, Lee Saunders wrote: > I could find the default time zone in Administration > Configuration > > Number 30 in the list. > There is no selection box to change

Re: Default Time Zone in the Invite

2013-08-22 Thread Lee Saunders
I could find the default time zone in Administration > Configuration > Number 30 in the list. There is no selection box to change it though. On Thu, Aug 22, 2013 at 9:46 PM, John Tran wrote: > Does one know how to change or where to go to change the default timezone > shown in the invitation po

Default Time Zone in the Invite

2013-08-22 Thread John Tran
Does one know how to change or where to go to change the default timezone shown in the invitation popup. Somewhere in archive someone said moving the intended timzone to the top of the list in /usr/lib/red5/webapps/openmeetings/languages/timezones.xml worked for them. It didn't work for me when I