SSL Secured Pages

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
Bosch88 wrote:
We figured out we still have a problem, which was mentioned earlier.

The site is visable and online.

But I can;t seem to be able to logg in the admin menu.

how do i reverse the setting that caused this problem?

Kind Regards,


Did you execute following sql script that I already mention in previous quote?

update [dbo].[Setting]
set Value='false'
where name = 'SecuritySettings.ForceSslForAllPages'


update [dbo].[Store]
set SslEnabled = 0


After executing the sql script please stop and start your application pool
9 years ago
I cant find the table store.

The first adjustment was completed, then the website was back online.

The second adjustment we all cant seem to find: table.store.
Is the last one database related?

Kind Regards
9 years ago
Bosch88 wrote:
I cant find the table store.

The first adjustment was completed, then the website was back online.

The second adjustment we all cant seem to find: table.store.
Is the last one database related?

Kind Regards


Which version you are talking about?
9 years ago
We are using v3.0.
9 years ago
Bosch88 wrote:
We are using v3.0.


If it's 3.0 you must have 'Store' table in database. Please double check
9 years ago
we doublechecked, we found this version nr in a file.
So it's possible we have an older version (boss said could be 2.8)

were can we find the xact version nr, since we cant find the store table?
9 years ago
Bosch88 wrote:
we doublechecked, we found this version nr in a file.
So it's possible we have an older version (boss said could be 2.8)

were can we find the xact version nr, since we cant find the store table?


If your version is old that is not multistore enabled try following script and stop start application pool

update [dbo].[Setting]
set Value='false'
where name = 'SecuritySettings.UseSsl'


You would see version top right corner in admin section. If you can not access admin section please open source code

Libraries-> Nop.Core ->NopVersion.cs
9 years ago
thank you, we have version 2.7. and not version 3.0 als i tought earlier.
9 years ago
If we have this 2.7 version, what you advise me to do ?
9 years ago
Bosch88 wrote:
If we have this 2.7 version, what you advise me to do ?


did you try following script?

update [dbo].[Setting]
set Value='false'
where name = 'SecuritySettings.UseSsl'
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.