Accessing nopCommerce for the first time after installation

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Good day all,

when I access "http://localhost/nopCommerce", for the first time it automatically
takes me to "http://localhost/nopcommerce/install/install.aspx". What triggers this action, I would like to have the same feature in my web applications when they are accessed for the first time after installation. I can't find a sime redirect to this page(http://localhost/nopcommerce/install/install.aspx).

please help.
Best Wishes
13 years ago
Have a look in global.asax:


    void Application_BeginRequest(object sender, EventArgs e)
    {
        NopConfig.Init();
        if (!InstallerHelper.ConnectionStringIsSet())
        {
            InstallerHelper.RedirectToInstallationPage();
        }
    }
13 years ago
Thanx much really.
Best wishes
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.