Click on Administration HTTP Error 404

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
I downoloaded nopcommerce 2.0 no source code, added web application in IIS (windows 7 professional iis 7.5), installed nopcommerce by following the install wizard. i can log in and see administration link on the top right, but after i click, i get http 404 error.

Is there anyone can help with this? anything i did wrong or missed out?
12 years ago
There was an issue with 2.00 BETA when you install it into virtual directory. Get the latest source code here ('Source code' tab) and try it one more time
12 years ago
The latest version has this problem also. I'm trying to use Visual Studio Development Server and it returns 404. I'm not so good in mvc that's why can you advice me where search solution of this problem? I understand that RegisterRoutes in Global.asax of Nop.Web is not performed, but how call it in best way?
12 years ago
Ingwar wrote:
The latest version has this problem also.

Could you open the following file and copy its content here (the code inside "@if (Model.DisplayAdminLink)" statement)?
\Views\Common\HeaderLinks.cshtml
12 years ago
@if (Model.DisplayAdminLink)
        {
            <li><a href="@Url.Content("~/admin")" class="ico-admin">@T("Account.Administration")</a>
            </li>
        }
12 years ago
What is your site URL? And where does "administration" link refer to (when you click on it)?
12 years ago
I'm trying to debug site from Studio 2010, set Use Visual Studio Development Server in Web properties of Nop.Admin (default value is "Use Custom Web Server" with Server Url https://www.nopcommerce.com/ that as you understand is non appliable for me). That's why start url is http://localhost:2454/ - result is 404. I tried also http://localhost:2454/Home/index - the same result.
12 years ago
Sorry my misunderstanding, I've found my problem - I was trying to set Nop.Admin as startup application and debud as separate module. I this case Global.asax isn't executed and routing is not setupped. When I logged in as admin from main site all is ok. Again, sorry for misunderstanding.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.