Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...install DNN 5.4.2 - The resource cannot be found.install DNN 5.4.2 - The resource cannot be found.
Previous
 
Next
New Post
5/27/2010 10:05 AM
 
I installed 5.4.2 on my PC.... It's installed well no errors on screen.  I locate to localhost/abc and I see the DNN home page. When I click on register I get register screen. when I click on HOME or LOGIN I get the error below....

I don't know what the problem could be. I downloaded new from DNN again and I still get the same issue....

I'VE SEEN MANY OF POST OF THE SAME ISSUE, BUT SEEMS TO BE NO HAS FIXED THIS....
ANYONE CAN PROPOSE A SOLUTION, I WILL ADD THE SOLUTION IF IT WORKS :)  


I type :  localhost/abc    I also tried localhost:80/abc

return url:
url: http://localhost/abc/Login.aspx?Retur...

Server Error in '/ABC' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

Requested URL: /abc/Login.aspx/px


Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3601


btw: register screen has this URL: http://localhost/abc/Register.aspx?Re...
 
New Post
6/1/2010 8:01 AM
 
same error wid me.. :( m newbei to dnn and i installed it with IIS 7 and using sql server 2005 but ..when i installed it everything goes fine..i hv the permission to the folders n all..and check all things that m aware of ..finally got it installed but..when i tried to use login or any other link on the home page..no link is working and i got an error: Server Error in '/' Application. The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /Login.aspx Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927 then i installed it again with some video tutorial help and same procedure i repeat..installed it again correctly..but no success same issue..again..m new to dnn..and know lil of coding..pls someone help me.. pls help me..
 
New Post
6/6/2010 1:33 AM
 
The same here. It's such a pity that there are always problems with the installation, otherwise this platform would be much miore used then ever.

I've installed the WinXP, SQL 2005 and the same.
Then Vista, SQL 2005 and the same.
Then Win 7, 32-bit, SQL 2005 and the same.
 
New Post
6/7/2010 11:08 PM
 

I have installed DNN 5.4.2 on a hosting account at GoDaddy.com.  The live website is hosted elsewhere as a classic ASP app which I am moving to the DNN platform at GoDaddy.  The Install went fine.  Note that GoDaddy has provided me (as always) with a Temporary url to the site until I get it loaded and the DNS records to point to the new site.  This is causing a problem in a few areas such as admin settings.  When I change a setting on the admin settings page and update, it tries to re-direct me to the LIVE url instead of the temporary url  IE each http://domainname.com instead of http://domainname.com.previewdns.com as is the norm.  The updates work, however, the redirect does not.  It appears that there is a function in the core that is stripping off the first part of the url because it is encountering the .com and not passing back the rest of the URL.

The redirect is posting back a 404 error because, the page DOES NOT exist on the old site.

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Requested Url: /Admin/SiteSettings.aspx

Doug

 
New Post
6/30/2010 1:21 AM
 
Had a friend call me up, he has the Godaddy hosting and was having the same issue.  I looked at the dnn code and there is a function in the Globals.Common library that gets the domain name.  If you look on the control panel under hosting, that will show you what domain name it thinks the site is representing.  Anyway, there are two ways it determines this domain:

1) Using the request and parsing the url to get the domain name

2) Determining if a host header is present, if so use that.

For the Godaddy deal, I think it is falling upon #2.  I will bet dollars to doughnuts that  in your settings the domain name you said this site is representing is the live domain name.  I think through some redirection trickery, Godaddy is stuffing in the host header in the request so your site will work without having the real domain name pointing at it.  Reason being if you look at your portal alias list, it shows the live domain name there too (which does not point to the site).  This was not always the case with GD hosting.  It would provision the site with the previewdns.com DNS name and that also went into the portal alias so the site would actually work.  Or at least that is what I'm thinking is going on.  Since it is subterfuge on the part of the hosting provider there may be little you can do other than live with it and know admin type redirects will fail everytime.  Hopefully this makes things more understandable as to what is going on.  The other option would be to create your own version of the Globals.Common library and comment out the part where it pulls the domain from the host header and force it to use the request URI.

If you choose to do that here are the lines of code you want to comment out in Library\Common\Globals.vb (about line 643)

Make this:

URI = Request.Url.ToString()

Dim hostHeader As String = Config.GetSetting("HostHeader")

If Not hostHeader Is Nothing Then

    If hostHeader.Length > 0 Then

        URI = URI.ToLower.Replace(hostHeader.ToLower, "")

    End If

End If


Look like this:

URI = Request.Url.ToString()

'Dim hostHeader As String = Config.GetSetting("HostHeader")

'If Not hostHeader Is Nothing Then

    'If hostHeader.Length > 0 Then

        'URI = URI.ToLower.Replace(hostHeader.ToLower, "")

    'End If

'End If

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...install DNN 5.4.2 - The resource cannot be found.install DNN 5.4.2 - The resource cannot be found.


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out