×
Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues
Frontend Logout
Samuel
Nieuw lid
Posts: 3
8 jaren 4 maanden geleden #1382
door Samuel
Frontend Logout werd gestart door Samuel
Hi,
I had some problems with my component and tried to report this as a bug. Some things were fixed, but there is still some weird behavior when I try to edit a component in the frontend:
If I add an item in the frontend, and click afterwards on edit, I need to fill in my credentials again. It seems the action logged me out!
Can anybody confirm this? (I am using a fresh Joomla installation and just build the component)
I had some problems with my component and tried to report this as a bug. Some things were fixed, but there is still some weird behavior when I try to edit a component in the frontend:
If I add an item in the frontend, and click afterwards on edit, I need to fill in my credentials again. It seems the action logged me out!
Can anybody confirm this? (I am using a fresh Joomla installation and just build the component)
De volgende gebruiker (s) zei dank u: Andy
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Andy
Nieuw lid
Posts: 7
8 jaren 2 maanden geleden - 8 jaren 2 maanden geleden #1425
door Andy
Beantwoord door Andy in topic Frontend Logout
I've seen this happen with components I've created.
Oddly enough, it seemed to only occur on Chrome and Safari running on OSX not in Firefox on Windows 7 or Linux. This made me think there is subtle difference in the way sessions are handled in OSX, though I'm not sure.
I created the component that displayed this in July 2016. I'm not sure if regenerating the components would resolve this issue.
This is in Joomla 3.6.2 on PHP 5.6.25.
Oddly enough, it seemed to only occur on Chrome and Safari running on OSX not in Firefox on Windows 7 or Linux. This made me think there is subtle difference in the way sessions are handled in OSX, though I'm not sure.
I created the component that displayed this in July 2016. I'm not sure if regenerating the components would resolve this issue.
This is in Joomla 3.6.2 on PHP 5.6.25.
Laatst bewerkt 8 jaren 2 maanden geleden door Andy.
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Andres Maeso
Platinum-lid
Posts: 338
8 jaren 2 maanden geleden #1431
door Andres Maeso
Andrés Maeso
Customer relations manager at Joomla Component Creator.
Dit e-mailadres wordt beveiligd tegen spambots. JavaScript dient ingeschakeld te zijn om het te bekijken.
Beantwoord door Andres Maeso in topic Frontend Logout
hi
I've sent this to our developers but please note that this community forum is not actively watched for bug reports by our support. If you find a bug please don't hesitate to send it to our contact form www.component-creator.com/en/help/contact we try to tackle them as they come to keep our sysem bug-free.
Regards,
Andrés.
I've sent this to our developers but please note that this community forum is not actively watched for bug reports by our support. If you find a bug please don't hesitate to send it to our contact form www.component-creator.com/en/help/contact we try to tackle them as they come to keep our sysem bug-free.
Regards,
Andrés.
Andrés Maeso
Customer relations manager at Joomla Component Creator.
Dit e-mailadres wordt beveiligd tegen spambots. JavaScript dient ingeschakeld te zijn om het te bekijken.
De volgende gebruiker (s) zei dank u: Andy
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Andy
Nieuw lid
Posts: 7
8 jaren 2 maanden geleden #1432
door Andy
Beantwoord door Andy in topic Frontend Logout
I think I found the cause, it may help, so I'll describe it here.
All our systems run on https, but the links seemed to not set the http/https in them. Digging into the code I found that tweaking the calls to jroute fixed the issue.
In the code, in the list view, some had a single parameter, like...
JRoute::_('index.php?option=com_piota_content_import&view=content_import');
...so I changed them to...
JRoute::_('index.php?option=com_piota_content_import&view=content_import', false, 0);
...though actually I don't think this fixed my issue.
And some had three parameters, like...
JRoute::_('index.php?option=com_piota_content_import&task=contentimportitemform.edit&id=0', false, 2);
...which I changed to...
JRoute::_('index.php?option=com_piota_content_import&task=contentimportitemform.edit&id=0', false, 0);
...this was the fix that solved the problem.
Looking at the joomla docs at...
docs.joomla.org/Supporting_SEF_URLs_in_your_component
..it says...
$ssl is an integer value that specifies whether the URI should be secure. It should be set to 1 to force the URI to be secure using the global secure site URI, 0 to leave it in the same state as when it was passed, and -1 to force the URI to be unsecure using the global unsecure site URI.
...so I'm not sure what the "2" as a third parameter in the component was doing, but zero, false or leaving it blank would be ok I think.
Hope that helps, let me know if you have any questions or if anything doesn't make sense.
All our systems run on https, but the links seemed to not set the http/https in them. Digging into the code I found that tweaking the calls to jroute fixed the issue.
In the code, in the list view, some had a single parameter, like...
JRoute::_('index.php?option=com_piota_content_import&view=content_import');
...so I changed them to...
JRoute::_('index.php?option=com_piota_content_import&view=content_import', false, 0);
...though actually I don't think this fixed my issue.
And some had three parameters, like...
JRoute::_('index.php?option=com_piota_content_import&task=contentimportitemform.edit&id=0', false, 2);
...which I changed to...
JRoute::_('index.php?option=com_piota_content_import&task=contentimportitemform.edit&id=0', false, 0);
...this was the fix that solved the problem.
Looking at the joomla docs at...
docs.joomla.org/Supporting_SEF_URLs_in_your_component
..it says...
$ssl is an integer value that specifies whether the URI should be secure. It should be set to 1 to force the URI to be secure using the global secure site URI, 0 to leave it in the same state as when it was passed, and -1 to force the URI to be unsecure using the global unsecure site URI.
...so I'm not sure what the "2" as a third parameter in the component was doing, but zero, false or leaving it blank would be ok I think.
Hope that helps, let me know if you have any questions or if anything doesn't make sense.
De volgende gebruiker (s) zei dank u: George Taylor, Ruud van Lent
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Ruud van Lent
Nieuw lid
Posts: 4
7 jaren 10 maanden geleden #1467
door Ruud van Lent
Beantwoord door Ruud van Lent in topic Frontend Logout
Hi Andy,
ran into this post when trying to figure out what was happening on my https site with the buttons to publish / edit / delete / etc.
As it turned out your keen investigation fixed all of these issues for me
I have searched the code for all instances with the faulty ', 2' value as ssl parameter in JRoute and now all of my crashing / error 500 / logout / login issues have gone when using the buttons on the lists and forms. I just committed this value (leaving it empty) and everything works again.
Thanks for sharing this!
regards,
Ruud.
ran into this post when trying to figure out what was happening on my https site with the buttons to publish / edit / delete / etc.
As it turned out your keen investigation fixed all of these issues for me
I have searched the code for all instances with the faulty ', 2' value as ssl parameter in JRoute and now all of my crashing / error 500 / logout / login issues have gone when using the buttons on the lists and forms. I just committed this value (leaving it empty) and everything works again.
Thanks for sharing this!
regards,
Ruud.
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Andy
Nieuw lid
Posts: 7
7 jaren 10 maanden geleden #1468
door Andy
Beantwoord door Andy in topic Frontend Logout
Hi Ruud
Glad that was helpful
Cheers
Andy
Glad that was helpful
Cheers
Andy
Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.
Tijd voor maken pagina: 0.058 seconden