Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Manually Disabling Live Server and SSL

  1. #1
    Dbennett4995 is offline Member
    Join Date
    Oct 2008
    Location
    Metairie, LA
    Posts
    62

    Default Manually Disabling Live Server and SSL

    Someone please help! Developing new site under temporary URL. Just uploaded .bak file from current store to new site under construction. At first I was able to access the Admin of the temp url, but then when I eventaully reset the cache, it directed me to the url of the current site. I figure that this is because an app config in the backup file was set to the non-temporary url. How can I fix this. I can access the files via FTP. Please help.

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    You'll need to manually change a few appconfigs in the database. Connect to your dev database via sql server management studio and run the following query:

    UPDATE dbo.AppConfig SET ConfigValue='false' WHERE Name='UseSSL'
    UPDATE dbo.AppConfig SET ConfigValue='you_staging_site_URL' WHERE Name='LiveServer'
    UPDATE dbo.AppConfig SET ConfigValue='false' WHERE Name='RedirectLiveToWWW'
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    Dbennett4995 is offline Member
    Join Date
    Oct 2008
    Location
    Metairie, LA
    Posts
    62

    Talking Problem Solved!

    Works like a charm! Thanks for the help George.