localhost redirection

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hello,

I have a web site in nop 3.90 with SSL

To make some plugins tests in a new localhost copy, i made a copy from entire DB to the local SQL Server, But :

When i try to launch either
- the local admin page url localhost:8099/Admin
- or the local shop localhost:8099

i am being automaticaly redirect to the web site ...

Please, which is the settings i could change into the DB ( with MSSMS ), probably in dbo.setting Table, to avoid that redirection and stay in localhost ?

Thanks for your advises
4 years ago
Hi,
1) You need to disable the sslenabled property for your store in the store table.
2) Also, you may need to change the seosettings.wwwrequirement setting's value to 'NoMatter' in the setting table
3) Do not forget to clear the browser cache once you change these settings.
4 years ago
Thanks, it works great with changing the Store table setting : sslenabled property (dbo.store table) to False

but :
- my seosettings.wwwrequirement was already in 'NoMatter' position
please do you know, what is the goal and the values of that parameter ?

- should i leave also the securitysettings.forcesslforallpages (dbo.settings table) to true or changing it to false ?

Regards
Michel
3 years ago
Open your database and check if [Store] table has the live site URL.

Reset values to stop redirection:

  UPDATE Store SET 
    [Url] = '',
    [SslEnabled] = 0,
    [Hosts] = ''
  WHERE id = ?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.