DNN Loop Forwarding

I am trying to duplicate an existing DNN portal that I have for testing purposes by duplicating the database and duplicating .net files in a new folder.

After I copied the site and changed webconfig to point to the new site and changed the nickname in the database, I get this error.


This web page has a redirect loop.

The web page http://xxx.us/xxx/default.aspx has resulted in too many redirects. Clearing the cookies for this site or allowing third-party cookies may resolve the issue. If not, it might be a server configuration problem, not a problem with your computer.

+5
source share
3 answers

DNN:

1) 1.0.61025.0 System.Web.Extensions. System.Web.Extensions to 3.5.0.0 web.config( , .NET 3.5 framework).

:

<trust level="Medium"... ...
 ...System.Web.Extensions,
 Version=1.0.61025.0...

:

 <trust level="Full"... ...
 ...System.Web.Extensions,
 Version=3.5.0.0...

, /bin System.Web.Extensions.dll( 1.0.61025.0). - , . web.config:

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <dependentAssembly>
            <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
            <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
        </dependentAssembly>
        <dependentAssembly>
            <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
            <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
        </dependentAssembly>
    </assemblyBinding>
</runtime>

2) HTTPAlias ​​ PortAlias , .

+4

JAllen, , PortalAlias.

- .

:

  • "localhost" , "localhost/" .
  • "www.domain.com" , "domain.com" . ( domain.com IIS, www.domain.com - "

, PortalAlias, IIS. hosts, , localhost .

C:\Windows\System32\drivers\etc\hosts

20 DNN , .

+1

, :

SQL Server

TLS1.0 SSLv3 PCI : ERR_TOO_MANY_REDIRECTS. ping- ( SSMS ), ODBC- - , .

( ), UnderConstruction, .

TLS1.0, , , , .

0

All Articles