Page 1 of 1

I need some help, please.

Posted: Mon Mar 16, 2009 8:39 am
by heinscott
I have recently downloaded my entire store onto my local dev machine. I have just gotten all of my current data, as well, attached to this local store. The problem I have now is that all of the secure elements of my site (ie, the admin section, the cart, etc...) just return a page not found error. Now, I understand that this probably has to do with some settings in the Database related to where my secure site is located, or whether or not to even use it at all. What I don't know, though, is the best way to fix this. Is there a field in the db I can edit manually to reset this for me? I need to get this local copy as close as possible to what I have deployed so I can start making all the necessary changes to perform the upgrade to 7.2 (or 7.02??).
Any one that could help me out with this, I would greatly appreciate it!

Thanks,

Scott

Re: I need some help, please.

Posted: Mon Mar 16, 2009 9:13 am
by nickc
Run SQL query: UPDATE [dbo].[ac_StoreSettings] SET FieldValue = 0 WHERE FieldName = 'SSLEnabled'
Then start new browser session.

If you are running against a local IIS service, you can also generate a self-signed cert and add to the website.
Don't know how to apply a cert to VS webserver.exe...

Re: I need some help, please.

Posted: Mon Mar 16, 2009 9:33 am
by heinscott
Worked perfectly.
Thank you so much, Nick.

Scott

Re: I need some help, please.

Posted: Mon Mar 16, 2009 9:22 pm
by AbleMods
Thanks for the SQL command. I always just browsed the ac_StoreSettings table and manually change the SSLEnabled flag.