BugNET

Open source issue tracking & project management
Welcome to BugNET Register | Login |

BugNET Forums

 
  Forum  Support  Installation pr...  .NET error on Vista
Previous Previous
 
Next Next
New Post 3/5/2007 11:51 AM
User is offline sstanescu
2 posts
No Ranking


.NET error on Vista 
 

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 1:34 PM
User is offline admin
641 posts
bugnetproject.com
1st Level Poster




Re: .NET error on Vista 
It sounds like the database isn't installed.

Did you visit the install.aspx page?

Davin Dubeau
BugNET - Core Developer

 
New Post 3/6/2007 11:37 AM
User is offline sstanescu
2 posts
No Ranking


Re: .NET error on Vista 

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 3:07 PM
User is offline joshcoady
4 posts
jlcoady.net
No Ranking


Re: .NET error on Vista 

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 3:10 PM
User is offline admin
641 posts
bugnetproject.com
1st Level Poster




Re: .NET error on Vista 
 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
BugNET - Core Developer

 
Previous Previous
 
Next Next
  Forum  Support  Installation pr...  .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.