2012-05-10 2 views
1

로컬 드라이브에 DotNetNuke 5.6을 설치 했으므로 호스트로 이동하여 웹 사이트를 실행하고 싶습니다. 내 웹 사이트를 실행하기 위해 어떤 단계를 밟아야합니까?로컬에서 호스트로 DotNetNuke 이동

답변

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

감사합니다. 나는이 작업을했는데, 알고 싶습니다. 복원 된 db를 가리 키도록 web.config 파일을 어떻게 변경해야합니까? – Arash

+1

, web.config에서 SiteSqlServer를 찾고 연결 문자열을 업데이트하십시오. DB 서버 이름, 데이터베이스 이름, 사용자 이름 및 암호를 알아야합니다. – EfficionDave