2012-05-10 7 views

答えて

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. 

それはそれを行う必要があります。

+0

ありがとう、私はこの作品をした、私はちょうど知りたい、どのように私はweb.configファイルを復元するdbを指すように変更する必要がありますか? web.config内の – Arash

+1

、SiteSqlServerを探して接続文字列を更新します。あなたは、DBサーバー名、データベース名、ユーザー名、およびパスワードを知る必要があります。 – EfficionDave

関連する問題