Advertisement
Discuss Joomla! 5.2.3
- pe7er
- Joomla! Master
- Posts: 25355
- Joined: Thu Aug 18, 2005 8:55 pm
- Location: Nijmegen, Netherlands
- Contact:
Discuss Joomla! 5.2.3
Here you can discuss about the release of Joomla 5.2.3
See Announcement: viewtopic.php?f=8&t=1014073
See Announcement: viewtopic.php?f=8&t=1014073
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
Advertisement
- JAVesey
- Joomla! Hero
- Posts: 2739
- Joined: Tue May 14, 2013 1:21 pm
- Location: Cardiff, Wales, UK
- Contact:
Re: Discuss Joomla! 5.2.3
“Live” and “local” sites updated without issue. Many thanks to all involved.
John V
Cardiff, Wales, UK
Joomla 5.2.3 "live" site on PHP 8.3.2 and MariaDB 10.11.10 (with b/c plugin enabled)
Joomla 5.2.3 on MAMP Pro 7.2 with PHP 8.3.14 and MySQL 8.0.40 (with b/c plugin enabled)
Cardiff, Wales, UK
Joomla 5.2.3 "live" site on PHP 8.3.2 and MariaDB 10.11.10 (with b/c plugin enabled)
Joomla 5.2.3 on MAMP Pro 7.2 with PHP 8.3.14 and MySQL 8.0.40 (with b/c plugin enabled)
-
- Joomla! Fledgling
- Posts: 2
- Joined: Wed Jan 11, 2023 6:13 pm
Re: Discuss Joomla! 5.2.3
Updated our J5 sites without issue, including two with Seblod.
- Rondeb
- Joomla! Guru
- Posts: 645
- Joined: Mon Dec 02, 2013 12:14 pm
- Location: Meschede - Germany
- Contact:
Re: Discuss Joomla! 5.2.3
I updated 25 websites, both Joomla 5 and 4, and it went great!
-
- Joomla! Explorer
- Posts: 424
- Joined: Thu Jun 10, 2010 12:38 pm
Re: Discuss Joomla! 5.2.3
15 sites easily updated. Thanks to those responsible.
- toivo
- Joomla! Master
- Posts: 17988
- Joined: Thu Feb 15, 2007 5:48 am
- Location: Sydney, Australia
Re: Discuss Joomla! 5.2.3
Localhost test sites and remote sites updated smoothly, thanks to the teams and individuals involved in this update!
Toivo Talikka, Global Moderator
-
- Joomla! Apprentice
- Posts: 22
- Joined: Fri Dec 15, 2006 6:25 pm
Re: Discuss Joomla! 5.2.3
Joomla 5.2.3 lost URL friendly tags using tag id's. I have a menu item named "Tags'" set to menu type "List All Tags".
Previously, in version 5.2.2 I could have links to display content related to a single tag or multiple tags, like the following links:
On a side note, the following still works, even though I don't have a tag with the name "hello".
After the update to 5.2.3, if I copy the following file from 5.2.2, all works like before.
components/com_tags/src/Service/Router.php
A diff of these two files version, 5.2.2 and 5.3.3 show the following change:
I don't understand the purpose of this change, and is there anyway I can override this Router.php file to get previous behavior?
Previously, in version 5.2.2 I could have links to display content related to a single tag or multiple tags, like the following links:
- https://www.mysite.com/tags/289
https://www.mysite.com/tags/289,384
or (with forward slash)
https://www.mysite.com/tags/289/384
On a side note, the following still works, even though I don't have a tag with the name "hello".
Code: Select all
https://www.mysite.com/tags/?view=tag&id[0]=289,384,hello
components/com_tags/src/Service/Router.php
A diff of these two files version, 5.2.2 and 5.3.3 show the following change:
Code: Select all
diff Router.php.522 Router.php.523
289c289,297
< $ids[] = $this->fixSegment($id);
---
> $slug = $this->fixSegment($id);
>
> // We did not find the segment as a tag in the DB
> if ($slug === $id) {
> array_unshift($segments, $id);
> break;
> }
>
> $ids[] = $slug;
- pe7er
- Joomla! Master
- Posts: 25355
- Joined: Thu Aug 18, 2005 8:55 pm
- Location: Nijmegen, Netherlands
- Contact:
Re: Discuss Joomla! 5.2.3
Could you please report this in the Joomla CMS issue tracker?twhite wrote: ↑Thu Jan 09, 2025 8:10 am Joomla 5.2.3 lost URL friendly tags using tag id's. I have a menu item named "Tags'" set to menu type "List All Tags".
Previously, in version 5.2.2 I could have links to display content related to a single tag or multiple tags, like the following links:After updating to 5.2.3, with friendly URLs and Rewriting on in global settings, the above links return 404 error page. I now have to change them to the following to get them to work:
- https://www.mysite.com/tags/289
https://www.mysite.com/tags/289,384
or (with forward slash)
https://www.mysite.com/tags/289/384
On a side note, the following still works, even though I don't have a tag with the name "hello".[..]Code: Select all
https://www.mysite.com/tags/?view=tag&id[0]=289,384,hello
I don't understand the purpose of this change, and is there anyway I can override this Router.php file to get previous behavior?
https://issues.joomla.org/ or
https://github.com/joomla/joomla-cms/issues
Thanks!
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
-
- Joomla! Apprentice
- Posts: 22
- Joined: Fri Dec 15, 2006 6:25 pm
Re: Discuss Joomla! 5.2.3
I reported it there, first time user
- pe7er
- Joomla! Master
- Posts: 25355
- Joined: Thu Aug 18, 2005 8:55 pm
- Location: Nijmegen, Netherlands
- Contact:
Re: Discuss Joomla! 5.2.3
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
- formfranska
- Joomla! Enthusiast
- Posts: 188
- Joined: Sun Dec 28, 2008 3:25 pm
- Location: Sweden
- Contact:
Re: Discuss Joomla! 5.2.3
Multiple sites updated to J 5.2.3, multilingual included. No issues. Thank you J Team
PHP 8.3.14
MariaDB 10.6.20
YOOtheme v 4.4.20
PHP 8.3.14
MariaDB 10.6.20
YOOtheme v 4.4.20
Joomler in Sweden :-)
https://www.formfranska.com
https://www.formfranska.com
- AMurray
- Joomla! Master
- Posts: 10438
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: Discuss Joomla! 5.2.3
Updated a couple of 5.x sites via mysites.guru - no issues, and one 5.x site via Joomla update also no issues.
Regards - A Murray
General Support Moderator
General Support Moderator
- darb
- Joomla! Hero
- Posts: 2068
- Joined: Thu Jul 06, 2006 12:57 pm
- Location: Stockholm Sweden
Re: Discuss Joomla! 5.2.3
No issues with the update thks Joomla heroes!
Advertisement