I just installed the CSK into GoDaddy from my local development machine. I used the SQL Tool Kit to upload the databases which worked great. I'm getting some errors though when I try to run the app online. One oddity I'm getting is it errors that it already added the classifiedsConnection. I actually have to remove it and then re-add it. I found that odd.
The one I can't get past is it is having issues with the HttpContext as shown below.
Line 77: Dim c As HttpContext = HttpContext.Current
Line 78: If Not (c Is Nothing) Then
Line 79: Dim port As String = c.Request.ServerVariables("SERVER_PORT")
Line 80: If port Is Nothing OrElse port.Equals("80") OrElse port.Equals("443") Then
Line 81: port = String.Empty
I also see in that script file that the namespace AspNet.StarterKits.Classifieds.BusinessLogicLayer is not being picked up.
Has anybody run across this before to provide some feedback or guide me in the right direction?
Thanks!