Has anyone installed the IBS portal?

Discussion in 'ASP.NET / ASP.NET Core' started by Bruce, Mar 12, 2003.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Bruce

    Bruce DiscountASP.NET Staff

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
     
  2. Q

    Q

    Cool, and thanks for helping out bruce..


    <configuration>
    <!-- application specific settings -->
    <appSettings>
    <add key="connectionString" value="Server=quinlinj;Database=DB_XXXX;uid=mickey;pwd=mouse;" />
    </appSettings>
    <system.web>
    < customErrors mode="Off" />
    <!-- set debugmode to false for running application -->
    <compilation debug="false" />
    <!--IBuySpy Portal supports either Forms authentication (Internet)
    or Windows authentication (for intranets). Forms Authentication is
    the default. To change to Windows authentication, comment the
    <authentication mode="Forms"> section below, and uncomment the
    <authentication mode="Windows"> section. -->
    <authentication mode="Forms">
    <forms name=".ASPXAUTH" protection="All" timeout="60" />
    </authentication>
    <!--<authentication mode="Windows" />
    <authorization>
    <deny users="?" />
    </authorization>-->
    <httpRuntime useFullyQualifiedRedirectUrl="true" />
    </system.web>
    </configuration>

    quote:Originally posted by bruce

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
     
  3. Bruce

    Bruce DiscountASP.NET Staff

    first problem i spotted is

    < customErrors mode="Off" />

    it should be

    <customErrors mode="Off" />

    try and see if this solve the problem.

    quote:Originally posted by Q

    Cool, and thanks for helping out bruce..


    <configuration>
    <!-- application specific settings -->
    <appSettings>
    <add key="connectionString" value="Server=quinlinj;Database=DB_XXXX;uid=mickey;pwd=mouse;" />
    </appSettings>
    <system.web>
    < customErrors mode="Off" />
    <!-- set debugmode to false for running application -->
    <compilation debug="false" />
    <!--IBuySpy Portal supports either Forms authentication (Internet)
    or Windows authentication (for intranets). Forms Authentication is
    the default. To change to Windows authentication, comment the
    <authentication mode="Forms"> section below, and uncomment the
    <authentication mode="Windows"> section. -->
    <authentication mode="Forms">
    <forms name=".ASPXAUTH" protection="All" timeout="60" />
    </authentication>
    <!--<authentication mode="Windows" />
    <authorization>
    <deny users="?" />
    </authorization>-->
    <httpRuntime useFullyQualifiedRedirectUrl="true" />
    </system.web>
    </configuration>

    quote:Originally posted by bruce

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
     
  4. Q

    Q

    Hello,
    I am trying to install IBS portal here at discountasp.net and I am not having any luck. So, I am looking for some pointers.

    Thanks,

    Q
     
  5. Bruce

    Bruce DiscountASP.NET Staff

    Need more details here.

    - Error Messages
    - URL
    - etc....




    quote:Originally posted by Q

    Hello,
    I am trying to install IBS portal here at discountasp.net and I am not having any luck. So, I am looking for some pointers.

    Thanks,

    Q
    </blockquote id="quote"></font id="quote">
     
  6. Q

    Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
     
  7. Bruce

    Bruce DiscountASP.NET Staff

    You need to create a web application root in the sub directory. You can do that with VS.net or web application tool in control panel. If you use VS.net, do not use web app tool. THey don't play well together.


    quote:Originally posted by Q

    Bruce, this is the error that I am getting now..

    Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

    I am looking into it but I thought others might run into this and you could enlighten us.


    quote:Originally posted by Q

    Bruce, good eyes it's always the little things. That helped me out a lot now I am getting feedback and its still is an issue with the web.config file but I think I can fix it. I will let you now what the outcome is..


    quote:Originally posted by bruce

    first problem i spotted is

    < customErrors mode="Off" />

    it should be

    <customErrors mode="Off" />

    try and see if this solve the problem.

    quote:Originally posted by Q

    Cool, and thanks for helping out bruce..


    <configuration>
    <!-- application specific settings -->
    <appSettings>
    <add key="connectionString" value="Server=quinlinj;Database=DB_XXXX;uid=mickey;pwd=mouse;" />
    </appSettings>
    <system.web>
    < customErrors mode="Off" />
    <!-- set debugmode to false for running application -->
    <compilation debug="false" />
    <!--IBuySpy Portal supports either Forms authentication (Internet)
    or Windows authentication (for intranets). Forms Authentication is
    the default. To change to Windows authentication, comment the
    <authentication mode="Forms"> section below, and uncomment the
    <authentication mode="Windows"> section. -->
    <authentication mode="Forms">
    <forms name=".ASPXAUTH" protection="All" timeout="60" />
    </authentication>
    <!--<authentication mode="Windows" />
    <authorization>
    <deny users="?" />
    </authorization>-->
    <httpRuntime useFullyQualifiedRedirectUrl="true" />
    </system.web>
    </configuration>

    quote:Originally posted by bruce

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
     
  8. Q

    Q

    Bruce, good eyes it's always the little things. That helped me out a lot now I am getting feedback and its still is an issue with the web.config file but I think I can fix it. I will let you now what the outcome is..


    quote:Originally posted by bruce

    first problem i spotted is

    < customErrors mode="Off" />

    it should be

    <customErrors mode="Off" />

    try and see if this solve the problem.

    quote:Originally posted by Q

    Cool, and thanks for helping out bruce..


    <configuration>
    <!-- application specific settings -->
    <appSettings>
    <add key="connectionString" value="Server=quinlinj;Database=DB_XXXX;uid=mickey;pwd=mouse;" />
    </appSettings>
    <system.web>
    < customErrors mode="Off" />
    <!-- set debugmode to false for running application -->
    <compilation debug="false" />
    <!--IBuySpy Portal supports either Forms authentication (Internet)
    or Windows authentication (for intranets). Forms Authentication is
    the default. To change to Windows authentication, comment the
    <authentication mode="Forms"> section below, and uncomment the
    <authentication mode="Windows"> section. -->
    <authentication mode="Forms">
    <forms name=".ASPXAUTH" protection="All" timeout="60" />
    </authentication>
    <!--<authentication mode="Windows" />
    <authorization>
    <deny users="?" />
    </authorization>-->
    <httpRuntime useFullyQualifiedRedirectUrl="true" />
    </system.web>
    </configuration>

    quote:Originally posted by bruce

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
     
  9. Q

    Q

    Bruce, this is the error that I am getting now..

    Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

    I am looking into it but I thought others might run into this and you could enlighten us.


    quote:Originally posted by Q

    Bruce, good eyes it's always the little things. That helped me out a lot now I am getting feedback and its still is an issue with the web.config file but I think I can fix it. I will let you now what the outcome is..


    quote:Originally posted by bruce

    first problem i spotted is

    < customErrors mode="Off" />

    it should be

    <customErrors mode="Off" />

    try and see if this solve the problem.

    quote:Originally posted by Q

    Cool, and thanks for helping out bruce..


    <configuration>
    <!-- application specific settings -->
    <appSettings>
    <add key="connectionString" value="Server=quinlinj;Database=DB_XXXX;uid=mickey;pwd=mouse;" />
    </appSettings>
    <system.web>
    < customErrors mode="Off" />
    <!-- set debugmode to false for running application -->
    <compilation debug="false" />
    <!--IBuySpy Portal supports either Forms authentication (Internet)
    or Windows authentication (for intranets). Forms Authentication is
    the default. To change to Windows authentication, comment the
    <authentication mode="Forms"> section below, and uncomment the
    <authentication mode="Windows"> section. -->
    <authentication mode="Forms">
    <forms name=".ASPXAUTH" protection="All" timeout="60" />
    </authentication>
    <!--<authentication mode="Windows" />
    <authorization>
    <deny users="?" />
    </authorization>-->
    <httpRuntime useFullyQualifiedRedirectUrl="true" />
    </system.web>
    </configuration>

    quote:Originally posted by bruce

    Can you publish the content of the web.config file?


    quote:Originally posted by Q

    I copied my IBS from VS.net up to my site where I have a subweb folder called PortalVBVS all the files that are needed to run the app are there. I also have a SQL Database setup and the connections string is setup properly because I have tested it.

    my URL is marketingladder.com and I have a redirect going from there to my subweb folder to this url: http://www.marketingladder.com/PortalVBVS/desktopdefault.aspx

    I am pretty sure its' a web.config issues or permession problem?

    I have tried rebuilding the project there but no go?

    I am all eyes and ears..

    Thanks,
    Q
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
    </blockquote id="quote"></font id="quote">
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page