J3.x

Duplicate usernames cause update issue/de: Difference between revisions

From Joomla! Documentation

Created page with "==Betroffene Versionen=="
Created page with "Das gilt nur für Joomla! Version(en):"
Line 7: Line 7:


==Betroffene Versionen==
==Betroffene Versionen==
{{tip|This pertains only to Joomla! version(s): '''3.9.16'''|title=General Information}}
{{tip|Das gilt nur für Joomla! Version(en): '''3.9.16'''|title=General Information}}


==What is the cause==
==What is the cause==

Revision as of 17:15, 10 March 2020

Bei einigen Webseiten die auf Joomla! 3.9.16 aktualisieren kann es auf Grund von doppelten Benutzereinträgen zu einem Datenbankfehler kommen. Wenn das passiert bitte nicht in Panik ausbrechen - Das Update wurde fast vollständig durchgeführt, nur die fehlende Datenbank Änderung muss noch durchgeführt werden.

Berichtete Fehler

Benutzer bekommen eine Update Fehlermeldung angezeigt auf Grund einer fehlgeschlagenen Datenbank Abfrage durch einen doppelte Eintrag #__users in der Benutzer Tabelle bei einem Upgrade von Joomla 3.9.15 oder älter.

Joomla 3.9.16 Upgrade Error

Betroffene Versionen

General Information

Das gilt nur für Joomla! Version(en): 3.9.16

What is the cause

Your website has more than one user in the #__users table with the same username, which is a security concern in that the incorrect account may be accessed by the wrong account owner.

How to fix

You will need to review your #__users table in your database and fix any duplicated usernames by either removing old user accounts or changing the username until all usernames are unique. Once this is finished, if you have already upgraded to 3.9.16 run the database schema fixer tool to finish the upgrade (this step is not required if you do this review prior to upgrading).

Joomla is unable to automatically determine the correct action to take and as a result is unable to perform this step for you - it has to be fixed by you as the site owner.

The following SQL Query can be run on your database to view which usernames are duplicated:

SELECT username FROM #__users GROUP BY username HAVING COUNT(*) > 1