Installing nopcommerce on web server

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 年 前
Hello everyone. I recently downloaded the newest version of nopcommerce and was wondering if there was any installation guide. There wasnt anything in the download that I got from the website and I was wondering if you really made people buy the installation guide. Seems a little crazy if thats the situation.

Any help?
14 年 前
Try here.  https://www.nopcommerce.com/Screencasts/Installation.aspx
14 年 前
I have uploaded the needed files to my server and went to the url and when I do it just shows all the code and not the set-up. Is there any reason for this?

Also I tried to set it up on a sub-domain and was wondering if you cant install on a sub-domain.

This is what it shows when I go to the URL:
[code]<%@ Page Language="C#" Inherits="NopSolutions.NopCommerce.Web.Install.InstallPage"
    Theme="Install" CodeBehind="install.aspx.cs" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>nopCommerce installation</title>
</head>
<body class="container-main">
    <form id="Form1" method="post" runat="server">
    <table border="0" cellpadding="0" cellspacing="0" class="container-installer">
        <tr class="top">
            <td class="left">
                &nbsp;
            </td>
            <td class="center">
                &nbsp;
            </td>
            <td class="right">
                &nbsp;
            </td>
        </tr>
        <tr class="Middle">
            <td class="left">
                &nbsp;
            </td>
            <td class="center">
                <asp:Label CssClass="header-text" Text="nopCommerce installation" runat="server"></asp:Label><br />
                <asp:Image ID="imgHeader" runat="server" CssClass="header-img" />
                <asp:Panel runat="server" ID="pnlWizard" CssClass="content">
                    <asp:Wizard ID="wzdInstaller" runat="server" DisplaySideBar="False" OnActiveStepChanged="wzdInstaller_OnActiveStepChanged"
                        OnNextButtonClick="wzdInstaller_OnNextButtonClick" ActiveStepIndex="1">
                        <StepNavigationTemplate>
                            <div style="float: right; padding: 0px 10px 0px 0px;">
                                <asp:Button ID="btnStepPrev" Source="file" runat="server" CommandName="MovePrevious"
                                    Text="Back" Width="100" />
                                <asp:Button ID="btnStepNext" runat="server" CommandName="MoveNext" Width="100"
                                    Text="Next" />
                            </div>
                        </StepNavigationTemplate>
                        <StartNavigationTemplate>
                            <div style="float: right; padding: 0px 10px 0px 0px;">
                                <asp:Button ID="btnStepNext" runat="server" CommandName="MoveNext" Width="100"
                                    Text="Next" />
                            </div>
                        </StartNavigationTemplate>
                        <WizardSteps>
                            <asp:WizardStep ID="stpWelcome" runat="server">
                                <table class="wizard-step" border="0" cellpadding="0" cellspacing="10">
                                    <tr>
                                        <td colspan="2">
                                            <asp:Label ID="lblWelcome" runat="server" Text="Thank you for choosing nopCommerce!"
                                                CssClass="title"></asp:Label>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2">
                                            <p>
                                                <a href="https://www.nopcommerce.com/" target="_blank">nopCommerce</a> is the leading
                                                ASP.NET online shop e-commerce solution. This wizard will guide you through the
                                                process of configuring <strong>nopCommerce
                                                    <%=GetNewVersion()%></strong>
                                                <br />
                                                <br />
                                                To complete this wizard you must know some information regarding your database server
                                                ("connection string"). Please contact your ISP if necessary. If you're installing
                                                on a local machine or server you might need information from your System Admin.<br />
                                                <br />
                                                P.S. Before you start any upgrade <b>don't forget to backup.</b>
                                            </p>
                                            <p>
                                                <asp:RadioButton ID="rbInstall" runat="server" Text="Install nopCommerce" AutoPostBack="True"
                                                    GroupName="InstallUpgrade" Checked="True"></asp:RadioButton>
                                                <br />
                                                <asp:RadioButton ID="rbUpgrade" runat="server" Text="Upgrade from previous version"
                                                    GroupName="InstallUpgrade"></asp:RadioButton>
                                            </p>
                                            <p>
                                                Press <b>"Next"</b> to start the wizard.
                                            </p>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2">
                                            &nbsp;
                                        </td>
                                    </tr>
                                </table>
                            </asp:WizardStep>
                            <asp:WizardStep ID="stpUserServer" runat="server">
                                <table class="wizard-step" border="0" cellpadding="0" cellspacing="10">
                                    <tr>
                                        <td colspan="2">
                                            <asp:Label ID="lblSQLServer" runat="server" Text="SQL server" CssClass="title"></asp:Label>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td nowrap="nowrap" align="right">
                                            <asp:Label ID="lblServerName" runat="server" Text="SQL Server name or IP address:"></asp:Label>
                                        </td>
                                        <td width="100%">
                                            <asp:TextBox ID="txtServerName" CssClass="textbox" runat="server"></asp:TextBox>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" align="left">
                                            <asp:RadioButton ID="rbSQLAuthentication" runat="server" Text="Use SQL Server account"
                                                AutoPostBack="True" GroupName="AuthenticationType" Checked="True"></asp:RadioButton>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td nowrap="nowrap" align="right">
                                            <asp:Label ID="lblUsername" runat="server" Text="Username:"></asp:Label>
                                        </td>
                                        <td>
                                            <asp:TextBox ID="txtUsername" CssClass="textbox" runat="server"></asp:TextBox>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td nowrap="nowrap" align="right">
                                            <asp:Label ID="lblPassword" runat="server" Text="Password:"></asp:Label>
                                        </td>
                                        <td>
                                            <asp:TextBox ID="txtPassword" CssClass="textbox" runat="server" TextMode="Password"></asp:TextBox>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" align="left">
                                            <asp:RadioButton ID="rbWindowsAuthentication" runat="server" AutoPostBack="True"
                                                GroupName="AuthenticationType"></asp:RadioButton>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2">
                                            &nbsp;
                                        </td>
                                    </tr>
                                </table>
                            </asp:WizardStep>
                            <asp:WizardStep ID="stpDatabase" runat="server">
                                <table class="wizard-step" border="0" cellpadding="0" cellspacing="0">
                                    <tr>
                                        <td colspan="3">
                                            <asp:Label ID="lblDatabase" runat="server" Text="Database" CssClass="title"></asp:Label>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="3">
                                            <asp:RadioButton ID="rbCreateNew" runat="server" Text="Create a new database" AutoPostBack="True"
                                                GroupName="DatabaseType" Checked="True"></asp:RadioButton>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td style="width: 25px;">
                                            &nbsp;
                                        </td>
                                        <td nowrap="nowrap" align="left" style="width: 140px;">
                                            <asp:Label ID="lblNewDatabaseName" runat="server" Text="New database name:"></asp:Label>
                                        </td>
                                        <td>
                                            <asp:TextBox ID="txtNewDatabaseName" CssClass="textbox" runat="server" Enabled="False"></asp:TextBox>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="3">
                                            <asp:RadioButton ID="rbUseExisting" runat="server" Text="Use an existing empty database"
                                                AutoPostBack="True" GroupName="DatabaseType"></asp:RadioButton>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td style="width: 25px;">
                                            &nbsp;
                                        </td>
                                        <td nowrap="nowrap" align="left" style="width: 140px;">
                                            <asp:Label ID="lblExistingDatabaseName" runat="server" Text="Existing database name:"></asp:Label>
                                        </td>
                                        <td>
                                            <asp:TextBox ID="txtExistingDatabaseName" CssClass="textbox" runat="server"></asp:TextBox> &nbsp;&nbsp;&nbsp;<asp:CheckBox runat="server" ID="chkDontCheckDatabase" Text="Don't check if a database exists" />
                                        </td>
                                    </tr>
                                    <tr>
                                        <td style="width: 25px;">
                                            &nbsp;
                                        </td>
                                        <td colspan="2">
                                            <asp:CheckBox ID="chkCreateSampleData" runat="server" Checked="True" Text="Create sample data">
                                            </asp:CheckBox>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="3">
                                            <asp:Panel ID="pnlLog" runat="server" Visible="False" Width="100%">
                                                <table>
                                                    <tr>
                                                        <td>
                                                            <asp:Label ID="lblLog" runat="server" Text="Setup log:" CssClass="title"></asp:Label>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td align="center">
                                                            <asp:Panel runat="server" ID="pnlGroupLog">
                                                                <asp:TextBox ID="txtLog" runat="server" CssClass="log" TextMode="MultiLine" ReadOnly="True" />
                                                            </asp:Panel>
                                                        </td>
                                                    </tr>
                                                </table>
                                            </asp:Panel>
                                        </td>
                                    </tr>
                                </table>
                            </asp:WizardStep>
                            <asp:WizardStep ID="stpConnectionString" runat="server" AllowReturn="false" StepType="Start">
                                <asp:Panel ID="pnlConnectionString" runat="server">
                                    <asp:Label ID="lblConnectionString" runat="server" Text="Connection string" CssClass="title"
                                        Visible="False"></asp:Label>
                                    <table class="wizard-step" border="0" cell
14 年 前
I just talked with my internet hosting and they informed that they do not support .aspx files. Is there anyway to still install nopcommerce without using the .aspx?
14 年 前
You need to install nopCommerce on windows hosting provider.  Try http://tinyurl.com/nopcommercehosting or one of the other hosting providers advertised on this site.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.