Daniel Struve wrote
Ok my problem is I was creating a portal without creating the profileproperties. there is a new method called within createportal called createprofiledefinitions. the .template was modified to account for teh definitions.
It's been awhile since anyone has posted on this issue, but for anyone still having this issue, here's what worked for me. Based on Daniel's comments I was able to fix my install by running the following SQL to insert any missing values into the ProfilePropertyDefinition table. You may need to change the object owner and object qualifier.
INSERT dbo.DNN4_ProfilePropertyDefinition
(PortalId,moduleDefid,Deleted,DataType,PropertyCategory,PropertyName,Length,Required,ViewOrder,Visible)
SELECT p.PortalId,-1,0,352,'Preferences','TimeZone',0,0,35,1
FROM dbo.DNN4_Portals p
LEFT JOIN dbo.DNN4_ProfilePropertyDefinition d
ON p.PortalId = d.PortalId
AND 'TimeZone' = d.PropertyName
WHERE d.PortalId IS NULL