nopCommerce on Godaddy Deluxe plan

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
Hi mates
I am trying to upload and run nopCommerce on godaddy but it showing error
[quote]Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
[quote]
<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
[/quote]

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
[quote]
<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>[/quote][/quote]

the same nopCommerce on my local machine working fine
is there any mistake im doing on webserver ?
14 years ago
make sure it is in the root folder ie what GoDaddy call the HTML folder.
Depending on how you have copied the application to the host you may have to Move the files to the root.
Mike
14 years ago
it is on root/store folder
i.e http://mydomain.com/store/

so the default pagewill be http://mydomain.com/store/nopCommerceStore

do u mean I need to put it on http://mydomain.com/ ?
14 years ago
make sure you dont have 2 webconfig files. I had the same dam problem until I deleted the webconfig file. I jsut went to iis7 and named index.html and i was good to go. simple but it might work.
14 years ago
Looks like you haven't setup a virtual directory for the store folder. Make sure you run IIS setup.

I got it in sub folders and it works fine.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.