Store is Closed-Made a seperate question

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
How do I change this if I cannot log in? I am using 2.3 no source code. What file is the changed it or where in the database?
11 years ago
Connect to the database (connection info in \App_Data\Settings.txt) with Microsoft SQL Server Management Studio and execute the following query (change YOUR_DATABASE_NAME to the name of your database):
  USE [YOUR_DATABASE_NAME]
  GO
  UPDATE [Setting]
     SET [Value] = 'False'
   WHERE [Name] = 'storeinformationsettings.storeclosed'  
  GO
This will set the store to be open, but the setting's closed value is still stored in the cache. To clear the cache, open Web.config and add a space and save the file. Store should now be open for access to the 'Forgot password?' link.

These steps were tested on 2.30.

.
11 years ago
Thank you. Wow, use solved it. Very grateful.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.