J3.x

Duplicate usernames cause update issue/de: Difference between revisions

From Joomla! Documentation

Created page with "==Was ist der Grund=="
Created page with "Deine Webseite hat mehr als einen Benutzer in der"
Line 10: Line 10:


==Was ist der Grund==
==Was ist der Grund==
Your website has more than one user in the <source lang="sql" inline>#__users</source> table with the same username, which is a security concern in that the incorrect account may be accessed by the wrong account owner.
Deine Webseite hat mehr als einen Benutzer in der <source lang="sql" inline>#__users</source> 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==
==How to fix==

Revision as of 17:16, 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

Allgemeine Informationen

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

Was ist der Grund

Deine Webseite hat mehr als einen Benutzer in der #__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