2012-05-28 19 views
5

ログインページが2つあります:Login.aspx - 管理者ログイン用のxlogin.aspx 私は自分のプロジェクトをサーバーにアップロードしました。私はadmin.aspxページに転送されていxlogin.aspx adminにログインしたとき はなく、 - しかし、私はこのエラーを取得:エラー:リモートからアプリケーションエラーの詳細が表示されない

Server Error in '/' Application. 
Runtime Error 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. 

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". 

<!-- Web.Config Configuration File --> 

<configuration> 
    <system.web> 
     <customErrors mode="Off"/> 
    </system.web> 
</configuration> 


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. 

<!-- Web.Config Configuration File --> 

<configuration> 
    <system.web> 
     <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> 
    </system.web> 
</configuration> 

これは私のweb.config

<?xml version="1.0"?> 

<configuration> 
    <connectionStrings> 
    <clear/> 
    <add name="PROJEntities" connectionString="metadata=res://*/PROJModel.csdl|res://*/PROJModel.ssdl|res://*/PROJModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=000.000.0.00;Initial Catalog=DBNAME;User ID=MYUSERNAME;Password=MYPASS;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient"/> 
    </connectionStrings> 

    <system.web> 
    <compilation debug="true" targetFramework="4.0" /> 

    <authentication mode="Forms"> 
     <forms loginUrl="~/Login.aspx" timeout="720" slidingExpiration="true" defaultUrl="~/Gateway.ashx"/> 
    </authentication> 

    <customErrors mode="Off"/> 
    <pages enableEventValidation="false" viewStateEncryptionMode="Never"></pages> 
    </system.web> 

    <system.webServer> 
    <modules runAllManagedModulesForAllRequests="true"/> 
    </system.webServer> 

    <system.web.extensions> 
    <scripting> 
     <webServices> 
     <jsonSerialization> 
      <converters> 
      <add type="PROJ.Presentation.Common.DateTimeConverter" name="DateTimeJavaScriptConverter"/> 
      </converters> 
     </jsonSerialization> 
     </webServices> 
    </scripting> 
    </system.web.extensions> 
</configuration> 
+0

エラーを確認する必要があります。そのページで何かが間違っています。カスタムエラーをオンにし、エラーメッセージを見てください。 –

答えて

12

各位ですオルガはメッセージが言っていることは明らかです。カスタムエラーをオフにしてこのエラーの詳細を確認し、修正してから閉じます。ちなみに Deploying website: 500 - Internal server error

<configuration> 
    <system.web> 
     <customErrors mode="Off"/> 
    </system.web> 
</configuration> 

相対答え:だからとしてモード=「オフ」を追加し、エラーメッセージがweb.configファイルは、あなたがそれをここに入力1がないことを宣言します。あなたのweb.configをアップロードすることを忘れているかもしれませんか?また、オンラインページで使用するweb.configのデバッグフラグを閉じることを忘れないでください。

0

説明サーバーでアプリケーションエラーが発生しました。このアプリケーションの現在のカスタムエラー設定により、アプリケーションのエラーの詳細が(セキュリティ上の理由により)リモートから表示されなくなります。ただし、ローカルサーバーマシン上で実行されているブラウザーで表示することはできます。

詳細:この特定のエラーメッセージの詳細をリモートマシンで表示できるようにするには、現在のWebアプリケーションのルートディレクトリにある "web.config"設定ファイル内にタグを作成してください。このタグは、 "mode"属性を "Off"に設定する必要があります。

0

これは、web.configファイルでカスタムエラーがオフになっていても表示されるメッセージです。これは、アプリケーションをホストしているドライブの空き領域がなくなったことを意味します。ドライブ上に他にスペースがない場合は、ログファイルをクリーンアップしてください。

0

私の場合、私の接続文字列に特別な文字(&)があるので、私はこのメッセージを受け取りました。

乾杯