BugNET

Open source issue tracking & project management

Forums

HomeHomeSupportSupportInstalling BugN...Installing BugN....NET error on Vista.NET error on Vista
Previous
 
Next
New Post
3/5/2007 10:51 AM
 
 

First... newbie with this tool. Also, trying to recapture some of the skills on .NET.

I followed the help.Activate on Vista the IIS. Installed SQL Express SP1. I used the following connection:

connectionString="Server=bunu\SQLEXPRESS; Database=BugNet; uid=bugnet; pwd=bugnet"

Even if I played with roles, added NT AUTHORITY\NETWORK SERVICE as dbowner, still no luck, error is:

Exception Details: System.Data.SqlClient.SqlException: Could not find stored procedure 'BugNET_HostSettings_GetHostSettings'.

Any hint? If needed, I can provide additional information to troubleshoot.

 Unfortunately I do not have in this moment an XP box to see if Vista is the issue.

Thanks,

Stef

 
New Post
3/5/2007 12:34 PM
 
It sounds like the database isn't installed.

Did you visit the install.aspx page?

Davin Dubeau

follow us on twitter facebook users group google plus
 
New Post
3/6/2007 10:37 AM
 

Yes Davin, the error was generated by the install.aspx. And your remark was good, I had also the intention to recreate the database.

 

But now I went in a different direction: I removed the database but I noticed there is a database file already in App_Data. So I attached this database in SQL Express and installer looked like it had nothing to do, since database was fine.

 

Now I'm stuck with the login page, which is rejecting the username/password combination. I will have to read more on the forum about this issue now.

 

Thanks a lot,

Stef

 
New Post
4/10/2007 2:07 PM
 

I had this same problem, but figure it out--you're going to kick yourself ;-)

When you go to the install page, make sure it ends with Install.aspx (with a capital 'I'), not install.aspx--it's case sensitive.

Davin, in BugNet.Global.Application_Start you have the following code:

if (!HttpContext.Current.Request.Url.LocalPath.EndsWith("Install.aspx"))

I suggest you change it to:

if (!HttpContext.Current.Request.Url.LocalPath.ToLower().EndsWith("install.aspx"))


Josh Coady
http://jlcoady.net
 
New Post
4/10/2007 2:10 PM
 
joshcoady wrote

I had this same problem, but figure it out--you're going to kick yourself ;-)

When you go to the install page, make sure it ends with Install.aspx (with a capital 'I'), not install.aspx--it's case sensitive.

Davin, in BugNet.Global.Application_Start you have the following code:

if (!HttpContext.Current.Request.Url.LocalPath.EndsWith("Install.aspx"))

I suggest you change it to:

if (!HttpContext.Current.Request.Url.LocalPath.ToLower().EndsWith("install.aspx"))



Thanks, I will fix this for the next release.

Davin Dubeau

follow us on twitter facebook users group google plus
 
Previous
 
Next
HomeHomeSupportSupportInstalling BugN...Installing BugN....NET error on Vista.NET error on Vista


Forum Policy

These Discussion Forums are dedicated to the discussion of the BugNET issue tracker.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:
1. No Advertising.
2. No Flaming or Trolling.
3. No Profanity, Racism, or Prejudice.
4. Site Moderators have the final word on approving/removing a thread or post or comment.
5. English language posting only, please.