no error- install.aspx simply displays text

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 年 前
I have done my best to read the forums for a few hours now and still can't find an answer to my problem. I hope someone will help.

I have followed the video instructions on installing nopCommerce and can't get the installation wizard to start. Please advise.

When I go to the install/install.aspx page of my site I get the following:

<%@ 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="headerText" Text="nopCommerce installation" runat="server"></asp:Label><br />
                <asp:Image ID="imgHeader" runat="server" CssClass="headerImg" />
                <asp:Panel runat="server" ID="pnlWizard" CssClass="content">
                    <asp:Wizard ID="wzdInstaller" runat="server" DisplaySideBar="False" OnActiveStepChanged="OnActiveStepChanged"
                        OnNextButtonClick="OnNextButtonClick" ActiveStepIndex="1">
                        <StepNavigationTemplate>
                            <div style="float: right; padding: 0px 10px 0px 0px;">
                                <asp:Button ID="StepPrevButton" Source="file" runat="server" CommandName="MovePrevious"
                                    Text="Back" Width="100" />
                                <asp:Button ID="StepNextButton" runat="server" CommandName="MoveNext" Width="100"
                                    Text="Next" />
                            </div>
                        </StepNavigationTemplate>
                        <StartNavigationTemplate>
                            <div style="float: right; padding: 0px 10px 0px 0px;">
                                <asp:Button ID="StepNextButton" runat="server" CommandName="MoveNext" Width="100"
                                    Text="Next" />
                            </div>
                        </StartNavigationTemplate>
                        <WizardSteps>
                            <asp:WizardStep ID="stpWelcome" runat="server">
                                <table class="wizardStep" 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 don't forget to backup.
                                            </p>
                                            <p>
                                                <asp:RadioButton ID="radInstall" runat="server" Text="Install nopCommerce" AutoPostBack="True"
                                                    GroupName="InstallUpgrade" Checked="True"></asp:RadioButton>
                                                <br />
                                                <asp:RadioButton ID="radUpgrade" 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="wizardStep" 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="radSQLAuthentication" 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="radWindowsAuthentication" 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="wizardStep" 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="radCreateNew" 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="radUseExisting" 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>
                                        </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="wizardStep" border="0" cellpadding="0" cellspacing="0">
                                        <tr>
                              
14 年 前
Looks like .aspx pages aren't being served at all.

Are you trying to run from IIS or Visual studio on a local machine?

Id go down the path checking if IIS and ASP.NET 3.5 are installed correctly

Also what version of IIS is installed?

-Keith
14 年 前
Hi Keith,

Thanks for the quick reply. You are right, aspx is not being served at all. I found out my host uses linux servers exclusivly and so I can't use nopCommerce with them (that's what they said).

It never really occured to me that asp.net wasn't supported by my host. Now I know better, and will either look for a new host or new software.

Thanks again for pointing me in the right direction,

Robert
14 年 前
No Problem,  Check out some of the hosting partners here.

https://www.nopcommerce.com/RecommendedHosting.aspx

One of the many reasons I picked nopCommerce is My host runs on a modified medium trust environment which Nop supports where quite a few solutions out there only run on full trust.

-Keith
14 年 前
before you decide on a  new host, you should search the forum for peoples experiences of them first
14 年 前
After reviewing Nop’s recommendations, and others on the forums, I went with softsys hosting. It's working out really well so far. Thanks again.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.