jepper199211
New Member
- Messages
- 7
- Reaction score
- 0
- Points
- 1
I do not understand guien, do not understand it to upload to an Apache server when I go to the site when it is uploaded, I come in to openDNS.com, please help
Hi Untit1ed; thanks for pointing out my typo's, well spotted; it hasn't confused anyone so far, but I'll fix it immediately - cheers.
This tutorial is very basic, and has been tried and tested quite a few times now. Here is a live version so you can confirm it works. I've have looked at some other more complex asp.net pages and they work, so there is currently no issue with our servers (on stoli anyway).
So erm, did you follow the tutorial, or are we talking about your own custom page? Also, can you please provide some information about the Exception you are getting as your description currently gives us nothing to work with. I'll happily assist you further when you do...
You have omitted the xml declaration from the web.config you posted; please ensure the copy in your webspace contains it.
edit: I can't actually edit the original tutorial, as the Edit button is missing for me for that post; so I'll have to leave it with the errors for now...
Thanks in advanceServer Error in '/' Application
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>