help to better help you:
Please: add always Joomla / JEM version and details to your posts, so we can try to reproduce your issue!
Multiple issues with recurring events
Re: Multiple issues with recurring events
1 year 2 months ago - 1 year 2 months ago
It is a strange thing! Here's a little recipe that works 100% of the time at my website.
1. Open the list of JEM events (assuming there is at least one).
2. Middle click an event, to open it in second browser tab.
3. Open the "Global check-in" page (System -> "Global check-in") in a third browser tab.
4. Reload the first tab (list of events) to see the padlock indicating the event is checked-out.
5. Reload the third tab to see that there is an item that can be checked-in.
6. "Save and close" the event in the second tab.
7. Reload the first tab to see that the padlock is gone.
8. Reload the third tab to see that there is still an item that must be checked in.
So JEM thinks the item is checked-in, but Joomla does not? Checking in the database with
shows a nonzero value from step 2-5 and a zero from step 6 on, so I would say that the item has been checked back in. Am I right?
Maybe it's a bug in Joomla. I found issue 41149 at the joomla-cms github. It was filed against version 4.3.3. (Sorry, for some reason I can;t insert a link.)
1. Open the list of JEM events (assuming there is at least one).
2. Middle click an event, to open it in second browser tab.
3. Open the "Global check-in" page (System -> "Global check-in") in a third browser tab.
4. Reload the first tab (list of events) to see the padlock indicating the event is checked-out.
5. Reload the third tab to see that there is an item that can be checked-in.
6. "Save and close" the event in the second tab.
7. Reload the first tab to see that the padlock is gone.
8. Reload the third tab to see that there is still an item that must be checked in.
So JEM thinks the item is checked-in, but Joomla does not? Checking in the database with
Code:
select checked_out from XXXXX_jem_events where ID = NNN;
Maybe it's a bug in Joomla. I found issue 41149 at the joomla-cms github. It was filed against version 4.3.3. (Sorry, for some reason I can;t insert a link.)
Last edit: 1 year 2 months ago by rpbikker.
Please Log in or Create an account to join the conversation.
Re: Multiple issues with recurring events
1 year 1 month ago
It's interesting case. I research it.
Please Log in or Create an account to join the conversation.
Re: Multiple issues with recurring events
1 year 1 month ago - 1 year 1 month ago
@ripbkker Fixed. You can see the commit in
github.com/jemproject/JEM-Project/issues/1686
Add support null value to JemTableEvent table. So, checked_out and checked_out_time in events table can be null.
Add support null value to JemTableEvent table. So, checked_out and checked_out_time in events table can be null.
Last edit: 1 year 1 month ago by McKillo.
Please Log in or Create an account to join the conversation.
Re: Multiple issues with recurring events
1 year 1 month ago
Thank you!
Commit fa3196c only mentions the JEM-4.1.1-dev branch, will this also be in the branch made for Joomla 5.0?
Commit fa3196c only mentions the JEM-4.1.1-dev branch, will this also be in the branch made for Joomla 5.0?
Please Log in or Create an account to join the conversation.
Re: Multiple issues with recurring events
1 year 1 month ago
JEM 4.1.0 can be installed in J5, and JEM 4.1.1 (next version in next week) too. The JEM 4.1.1 version is an update to resolve same issues in J5.
Please Log in or Create an account to join the conversation.
Re: Multiple issues with recurring events
1 year 1 month ago
in my sites JEM 4.1.0 is blocked in J5, as far as I can see in script.php on line 230:
if I set it to
, then it works
Code:
if (version_compare(JVERSION, '5.0.0', 'ge') || // J! 5.x NOT supported, but allow alpha/beta
Code:
JVERSION, '6.0.0', 'ge')
Please Log in or Create an account to join the conversation.
Time to create page: 0.684 seconds