Too many redirections... My solution.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 anos atrás
Hi all,

I had unpopular problem with "Too many redirects" while I was trying to install nopCommerce. After few hours of desperate looking for error, I finally found a solution which perfectly works for me, and it's very easy to implement.

Just add the following into Your configuration tag in web.config after You published app:

<location path="install">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="Shop">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

My application works like a charm after doing this.

I hope it will be helpful to all trying to successfully run nopCommere. And I must say - this is fantastic piece of software!!!
3 anos atrás
Thanks!  Worked for me as well.
3 anos atrás
Is it possible to elaborate on what you're exactly doing/fixing? When I copied this, it didn't solve anything.
3 anos atrás
Hi, I'm facing a same issue. I deployed nopcommerce 4.3.
I made the changes to web.config but no resolution.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.