2011-07-07 14 views
0

私は自分のウェブサイトを別のサーバーに移しています。エラードメイン名onlinethailandbooking.comがデータベースに存在しません

私はウェブサイトとデータベースのバックアップも取っています。私は、新しいサーバー上で、それを構成したときに、今では、最初のデータベースのアップグレードを示し、その後、データベース

DotNetNukeの中に存在しない

ドメイン名onlinethailandbooking.comの誤差を示し、単一のデータベース/コードベースから、複数のポータルをサポートしています。これは、ポータルデータベーステーブル内の有効なPortalIDにクライアントブラウザ要求のURLを変換することによってこれを達成します。次の手順では、プロセスを説明します

Web Server Processing 
    When a web server receives a Request from a client browser, it compares the file name extension on the target URL resource to its Application Extension Mappings defined in IIS. 
    Based on the corresponding match, IIS then sends the Request to the defined Executable Path (aspnet_asapi.dll in the case of ASP.NET Requests). 
    The aspnet_isapi.dll engine processes the Request in an ordered series of events beginning with Application_BeginRequest. 


HttpModule.URLRewrite OnBeginRequest (UrlRewriteModule.vb) 
    The Request URL is parsed based on the "/" character 
    A Domain Name is constructed using each of the relevant parsed URL segments. 

    Examples: 

    URL: http://www.domain.com/default.aspx = Domain Name: www.domain.com 
    URL: http://209.75.24.131/default.aspx = Domain Name: 209.75.24.131 
    URL: http://localhost/DotNetNuke/default.aspx = Domain Name: localhost/DotNetNuke 
    URL: http://www.domain.com/virtualdirectory/default.aspx = Domain Name: www.domain.com/virtualdirectory 
    URL: http://www.domain.com/directory/default.aspx = Domain Name: www.domain.com/directory 

    Using the Domain Name, the application queries the database (Portals table - PortalAlias field) to locate a matching record. 

    Note: If there are multiple URLs which correspond to the same portal then the PortalAlias field must contain each valid Domain Name in a comma seperated list. 

    Example: 

    URL: http://localhost/DotNetNuke/default.aspx 
    URL: http://MACHINENAME/DotNetNuke/default.aspx 
    URL: http://209.32.134.65/DotNetNuke/default.aspx 
    PortalAlias: localhost/DotNetNuke,MACHINENAME/DotNetNuke,209.32.134.65/DotNetNuke 

    Note: If you are installing the application to a remote server you must modify the PortalAlias field value for the default record in the Portals table according to the rules defined above. 

は、私は、データベースdbo.portalalisesに見えるが、ポータルの唯一の2つのエントリがありますが、私は3 portals..iは、それが自動的にポータルIDを生成することができないと思いますか?

このエラーはどのように解決されますか?あなたのWebフォルダにアクセス許可を確認し

答えて

0
  1. は、データベース内のPortalAliasテーブルであなたのエントリがあることを確認し、あなたのサイトには、データベース接続とアクセス権を確認し、新しいホスト
  2. の下で実行されるアプリケーションプールのものと一致しますあなたの新しいホストに合っていることを確認してください
0

私はローカルのホストのHTTPエイリアスを持つために、データベースの "ポータルエイリアス"テーブルを更新した後、同じ問題が発生しました。 、私はlocalhost:8089に設定した。これは私が設定したものと同じだった。 nポータルIDが0(ポータルIDが0だったため)のDNN WebサイトのIISバインディング)を使用して、web.configファイルをデータベース接続文字列で更新したことを確認していましたが、 web.configのデータベース接続のために、私はそれらの1つを欠いていました。したがって、2つの接続を次のように更新してください。

1) <connectionStrings> 
2) <appSettings> 

希望します。

関連する問題