将DotNetNuke从本地移动到主机

将DotNetNuke从本地移动到主机,dotnetnuke,Dotnetnuke,我已经在本地驱动器上安装了DotNetNuke 5.6,现在我想把它移到主机上运行网站。我应该执行哪些步骤来运行我的网站?如果您尚未在本地主机上对该网站执行任何操作,那么让您的主机将DotNetNuke的干净副本安装到您的站点可能是最简单的。许多主机将为您执行此操作,或者提供自动化工具通过其控制面板进行安装 为了帮助您移动DotNetNuke站点,我们确实需要更多的详细信息来提供完整的答案(您的托管公司应该能够为您提供指导),但基本内容包括: 1a. If you are just using

我已经在本地驱动器上安装了DotNetNuke 5.6,现在我想把它移到主机上运行网站。我应该执行哪些步骤来运行我的网站?

如果您尚未在本地主机上对该网站执行任何操作,那么让您的主机将DotNetNuke的干净副本安装到您的站点可能是最简单的。许多主机将为您执行此操作,或者提供自动化工具通过其控制面板进行安装

为了帮助您移动DotNetNuke站点,我们确实需要更多的详细信息来提供完整的答案(您的托管公司应该能够为您提供指导),但基本内容包括:

1a. If you are just using SQL Express on the local host and plan to
use it under SQL Express on the host as well, you'll just need to
FTP up the DB files along with all the other files. 
1b. If you'll be
running the DB under a full SQL Server: Backup your database on your
localhost, copy the DB backup to your host, and restore the database
to the database server provided by the host.
2. Create a blank website on the host.
3. FTP all site files from your localhost to the root directory of your new website. 
4. Make sure the Network Service account has Full Access permissions to the root directory and all sub-directories.
5. If you're using a full SQL Server, you'll need to update connection strings in the web.config to point to the restored DB and
ensure you're using a user/login with read/write rights to the DB.
6. Browse to the site.

应该可以了。

谢谢,我做了这项工作,我只是想知道,我应该如何更改web.config文件以指向还原的db?在web.config中,查找SiteSqlServer并更新连接字符串。您只需要知道数据库服务器名称、数据库名称、用户名和密码。