NOP 4.4 error runtime VS 2019/2022

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
2 年 前
Hello,
I am trying to run NOP4.4 in both Visual Studio 2019 and 2022 and I get the same error even though I have cleared browser cache for Edge and Chrome and I have deleted the user/app vs cache file I still get the same error:

This page isn’t working right nowlocalhost redirected you too many times.
To fix this issue, try clearing your cookies.
ERR_TOO_MANY_REDIRECTS

Any ideas??  It's driving me nuts and holding me up - I know that walking away and trying again sure isn't helping.

Thanks for any ideas,
Dave
2 年 前
Can you check on your browser Network Tab (by inspect) where it's redirecting again & again?
It might be due to www redirect. In that case you may try by changing WwwRequirement settings.
Run this query on DB to check the value of this setting,
SELECT * FROM dbo.Setting WHERE [Name] = 'seosettings.wwwrequirement' 

You may give a try by set it up NoMatter using this query,
UPDATE dbo.Setting SET [Value] = 'NoMatter' WHERE [Name] = 'seosettings.wwwrequirement'
2 年 前
check your store url & ssl option from Store table.
2 年 前
Nothing in the DB log - the app, any NOP app - doesn't load.  Any ideas?
2 年 前
QEDDave wrote:
Nothing in the DB log - the app, any NOP app - doesn't load.  Any ideas?


what does your full "localhost" URL look like?
Got the error on the development computer?
2 年 前
Hello and thanks for the help ... http://localhost:44369/


This page isn’t working right nowlocalhost redirected you too many times.
To fix this issue, try clearing your cookies.
ERR_TOO_MANY_REDIRECTS
2 年 前
QEDDave wrote:
Hello and thanks for the help ... http://localhost:44369/


This page isn’t working right nowlocalhost redirected you too many times.
To fix this issue, try clearing your cookies.
ERR_TOO_MANY_REDIRECTS


what happens if you use https://localhost:44369/?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.