SSL Secured Pages

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 9 años
yes
Hace 9 años
And restarted. still cant log in
Hace 9 años
Hi,
For your information

You also need to make a change in the web.config file

Set UseSSL to false

BR
Hace 9 años
I just sent you and PM with contact details. Don't know if I can assist you.
Hace 8 años
Help with Disabling SSl using SQL Server Management or VS2012 Shell.
I do not see a way to set store table to false.
I am about to move stores over to another machine.
Before I do this I want to be able to disable and enable SSL.
I know that this can lock me out. I am attaching a screen shot.  
My 2012 Sever manager does not have an option to change  to false. Do I need to run script.

http://www.cas4.com/temp/Down-Load-4-VM/store-db-xxx01.jpg


http://www.cas4.com/temp/Down-Load-4-VM/store-db-xxx02.jpg
Hace 8 años
ERICKNIGHT wrote:
Help with Disabling SSl using SQL Server Management or VS2012 Shell.
I do not see a way to set store table to false.
I am about to move stores over to another machine.
Before I do this I want to be able to disable and enable SSL.
I know that this can lock me out. I am attaching a screen shot.  
My 2012 Sever manager does not have an option to change  to false. Do I need to run script.


1. From SQL Server Management (your first screenshot)

Right click on the Store table then 'Edit Top 200 Rows'

2. From VS2012 (your second screenshot)

Right click on the Store table then 'Show Table Data'

3. SQL Query

UPDATE Store
SET SslEnabled = 0
WHERE Id = 1
Hace 8 años
shahdat45ict wrote:
If you install ssl certificate and enable ssl ( admin -> configuration->stores -> edit -> enabled ssl) usually all pages those have 'form' input like cart, checkout, login, registration, review, admin area  come with https

The pages those have no form input like home, product list, product details pages come with http

FYI: we can enable SSL for the entire nopcommerce site by setting up
SecuritySettings.ForceSslForAllPages = true

To do that go to

Admin --> Configuration --> Settings ---> All Settings (Advanced)

Click the funnel type icon next to 'Setting Name' column. Using that filter, filter for "SecuritySettings.ForceSslForAllPages" and update the setting.

This is configuration for all pages .
My concert is config for only Checkout page?
Any can help this?
Thank
Hace 8 años
I have add this line code above Action OnePageCheckout
  [NopHttpsRequirement(SslRequirement.No)]

And seem it is not working
Thanks
Hace 8 años
bmsoft wrote:
I have add this line code above Action OnePageCheckout
  [NopHttpsRequirement(SslRequirement.No)]

And seem it is not working
Thanks

Correct code i did was
[NopHttpsRequirement(SslRequirement.Yes)]
Hace 8 años
I also add code on webconfig file in block appSetting like this
https://www.nopcommerce.com/boards/t/35782/ssl-on-version-24.aspx

<add key="UseSSL" value="true">

But still not working
Anyone can help me on this situation?
Many thank
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.