Hi,
I also have troubles to get BugNET properly installed on Vista. The installation fails with the following error message
Stored Procedure 'BugNET_HostSettings_GetHostSettings' not found.
For more details look at the screenshot
I got it working by manually executing the relevant sql scripts:
~/Install/dbscripts/InstallCommon.sql
~/Install/dbscripts/InstallMembership.sql
~/Install/dbscripts/InstallProfile.sql
~/Install/dbscripts/InstallRoles.sql
~/Install/dbscripts/BugNET.Schema.SqlDataProvider.sql
~/Install/dbscripts/BugNET.Data.SqlDataProvider.sql
@Davin please change the UserCreation to a SQL-style instead of using the Membership methods until installation
SQL-Code:
DECLARE @UserId uniqueidentifier
EXEC dbo.aspnet_Membership_CreateUser
'BugNET', 'admin', 'password', '', 'admin@yourdomain.com', '', '', 1, '26.04.2007', '26.04.2007', 1, 2, @UserId OUTPUT
INSERT INTO dbo.UserRoles VALUES (@UserId, 1)
regards
Christian