Registered: March 14, 2007 | Reputation: | Posts: 1,022 |
| Posted: | | | | Went to vote on a few submissions and getting following error message when clicking on 'database'
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> | | | | | | Last edited: by hayley taylor |
|
Registered: March 24, 2007 | Reputation: | Posts: 2,044 |
| Posted: | | | | I can confirm this. I just trie to check the databace and got the same runtime error. Rory | | | DVD Profiler for iOS as of 3/5/2013 DVD Profiler for Android as of 5/17/2013 |
|
Registered: March 18, 2007 | Posts: 150 |
| Posted: | | | | Just posted this same error on the website forum | | | Learning is not mandatory, but then neither is survival. |
|
Registered: March 13, 2007 | Reputation: | Posts: 467 |
| Posted: | | | | Yes there is a post concerning the database page of the site. I suppose Ken prepares the site for the new 3.6 beta version of DVD Profiler | | | Regards Cyrille |
|