When Joomla sorts its article titles alphabetically, it uses SQL and SQL sorts the records based on the "collation" of a column.
Joomla has by default as collation: utf8mb4_unicode_ci
You can see that when you view the database with phpMyAdmin.
Maybe you could change the collation of the "title" column in the #__content table.
I saw this article: https://dev.mysql.com/doc/refman/8.4/en ... -sets.html that mentions "latin7_estonian_cs"
I'm not sure if it is available for your MySQL/MariaDB version, and whether it is installed at your server or not.
If you would change your database or column collation, I'd recommend to create a backup of your database before doing so.
Joomla has by default as collation: utf8mb4_unicode_ci
You can see that when you view the database with phpMyAdmin.
Maybe you could change the collation of the "title" column in the #__content table.
I saw this article: https://dev.mysql.com/doc/refman/8.4/en ... -sets.html that mentions "latin7_estonian_cs"
I'm not sure if it is available for your MySQL/MariaDB version, and whether it is installed at your server or not.
If you would change your database or column collation, I'd recommend to create a backup of your database before doing so.
Statistics: Posted by pe7er — Mon Dec 23, 2024 8:29 pm