DotNetNuke 5.6 をローカル ドライブにインストールしましたが、それをホストに移動して Web サイトを実行したいと考えています。Web サイトを運営するには、どのような手順を踏む必要がありますか?
1 に答える
2
ローカルホスト上のサイトに何もしていない場合は、ホストに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.
それはそれをする必要があります。
于 2012-05-11T04:04:53.420 に答える