gregor.tusar
12/18/2024, 2:17 PMgregor.tusar
12/19/2024, 1:56 PMgregor.tusar
12/19/2024, 2:14 PMgregor.tusar
12/19/2024, 2:56 PMLuuk Peters (ProudNerds)
12/20/2024, 7:58 AMgregor.tusar
12/20/2024, 8:39 AMnoConsole
property in the DB.Luuk Peters (ProudNerds)
12/20/2024, 10:08 AMMike Chambers
12/20/2024, 11:25 AMsql
SELECT TOP (1000) [id]
,[dataTypeId]
,[contentTypeId]
,[propertyTypeGroupId]
,[Alias]
,[Name]
FROM [dbo].[cmsPropertyType]
where Alias like '%lock%'
usually 31 for the umbracoMemberLockedOut
then
sql
SELECT TOP (1000) [id]
,[versionId]
,[propertyTypeId]
,[languageId]
,[segment]
,[intValue]
,[decimalValue]
,[dateValue]
,[varcharValue]
,[textValue]
FROM [dbo].[umbracoPropertyData]
where propertyTypeId = 31
should get you values that you should be able to alter from 1 -> 0 to unlock.. and then rebuild the nucache via the backoffice.