CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.getting_started Tags:
Item Type: NewsGroup Date Entered: 6/6/2003 6:23:35 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 14 Views: 35 Favorited: 0 Favorite
15 Items, 1 Pages 1 |< << Go >> >|
herensuge
Asp.Net User
How can I get error info in my remote server?6/6/2003 6:23:35 PM

0

I work well with DNN in my local server, but I can't get to visualize front page of DNN in my remote server.

My web.config is the normal one of DNN but with the direction of my data base.

I am sure that it is by some error, but I can't that the error was something more informative than the clasic:

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>


Luis Mart?nez Aniesa (aka Herensuge)

Non gogoa, han zangoa

http://www.sareleku.com
liquidpt
Asp.Net User
Re: How can I get error info in my remote server?6/6/2003 11:10:38 PM

0

in the web.config, if you change:

<customErrors mode="RemoteOnly"/>

to read

<customErrors mode="Off"/>

then you will see the full error message

Matt Fraser
DotNetNuke Core Team
Liquid Platinum Technologies
LoanWeb
4Insurance
4Homes
herensuge
Asp.Net User
Re: How can I get error info in my remote server?6/7/2003 12:09:59 PM

0

I did this a lot of times (<customErrors mode="Off"/> ), but I got allways the clasic error.

But after your message, I redid and I get the lines on the error occurs !!!!.

I think this is OK, because I also put the file dotnetnuke.pdb in /bin and I compiled DNN with debug.

Thanks a lot!!! I hope this weekend I'll get my first portal in Internet, because I can know the errors I have.
Luis Mart?nez Aniesa (aka Herensuge)

Non gogoa, han zangoa

http://www.sareleku.com
hidefsooner
Asp.Net User
Re: How can I get error info in my remote server?7/2/2003 4:53:00 PM

0

I am having a problem with this too. I made <customErrors mode="Off"/> but I am still getting this message. What could I be doing wrong?

Server Error in '/dev' 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>



hidefsooner
Asp.Net User
Re: How can I get error info in my remote server?7/3/2003 3:33:05 PM

0

I figured it out, you have to create the site with its own virtual directory.
otherones
Asp.Net User
Re: How can I get error info in my remote server?7/3/2003 3:36:35 PM

0


I don't know if this is an issue, but I know that the mode attribute is case sensitive..

off <> Off
-Shane
otherones
Asp.Net User
Re: How can I get error info in my remote server?7/3/2003 3:36:44 PM

0


I don't know if this is an issue, but I know that the mode attribute is case sensitive..

off <> Off
-Shane
Yeggstry
Asp.Net User
Re: How can I get error info in my remote server?7/4/2003 3:19:45 PM

0

This is EXACTLY the problem I had and the solution that otherones has suggested is correct.

I was doing it as "off" before, read this and put "Off" instead.

Worked perfectly first time :)

Thanks for saving me hours of head scratching!

(If only I had found this 6/7 hours ago... :( )
sdelp
Asp.Net User
Re: How can I get error info in my remote server?8/27/2003 4:33:39 PM

0

I put "Off", but still can't see the error info in the remote server.

It shows:

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>

This is the Web.config information:


<!-- permits errors to be displayed for remote clients -->
<customErrors mode="Off"/>

Thanks in advance,
dcurry
Asp.Net User
Re: How can I get error info in my remote server?8/27/2003 5:21:10 PM

0

Are you absolutely sure of the capitalization of the "Off"? It does make a difference. I discovered it the hard way myself. View the web.config directly to ensure it to be correct. I was looking at a cached copy myself.. definitely a few wasted frustrating minutes..
sdelp
Asp.Net User
Re: How can I get error info in my remote server?8/27/2003 5:59:57 PM

0

I just download the web.config from the server:

<!-- permits errors to be displayed for remote clients -->
<customErrors mode="Off"/>

These are what I get from it , how can I do to verify that it's not using other cached copy?

Thank you,
sdelp
Asp.Net User
Re: How can I get error info in my remote server?9/1/2003 10:52:47 PM

0

No ideas?
bhopkins
Asp.Net User
Re: How can I get error info in my remote server?9/2/2003 1:05:15 AM

0

That should work. I'm curious if your hosting provider has something that is not allowing this. WebHost4Life does this until you tell them not to.


Bruce
DynamicVB.Net
wwwcoder
Asp.Net User
Re: How can I get error info in my remote server?9/3/2003 2:02:21 PM

0

Even if you set the CustomErrors to Off, if the ASP.Net account does not have list permissions on the subdirectories it will not display debugging information. I just ran into this problem this week, I had the machine.config and web.config set up to display errors, but the application did not display any errors, just the message telling me to change the web.config file. Once I gave the ASP.Net account permissions everything worked fine.
WWWCoder.com
Redmond Gadgets
My Weblog
jaldridge1
Asp.Net User
Re: How can I get error info in my remote server?9/21/2003 10:01:29 PM

0

I have had this problem too. I found that it was the capital "O" issue. However, I had to place the same web.config file in all the directories leading up to the one I was using to get it to work...don't know if this will help anyone.
15 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Handbook of information security Authors: Hossein Bidgoli, Pages: 0, Published: 2006
Dreamweaver 8: the missing manual Authors: David Sawyer McFarland, David Pogue, Pages: 936, Published: 2006
Asp .Net 2.0 Website Programming Authors: Marco Bellinaso, Pages: 0, Published: -1
Windows Server 2003: The Complete Reference Authors: Kathy Ivens, Rich Benack, Pages: 980, Published: 2003
SSH, the secure shell: the definitive guide Authors: Daniel J. Barrett, Richard E. Silverman, Robert G. Byrnes, Pages: 645, Published: 2005

Web:
How can I get error info in my remote server? - ASP.NET Forums I work well with DNN in my local server, but I can't get to .... I put "Off", but still can't see the error info in the remote server. ...
IT Resource Center forums - How can I access my Remote Server in GUI How can I access my Remote Server in GUI. ... Error: Couldn't find per display information # gpm is working with another users, ...
Errors when trying to backup my remote web server... - Fetch ... I'm trying to backup our remote web server via Fetch using the ... After you receive the error, go to the Window menu, and choose Fetch Transcript. ... I hesitate to post all of the info in the log since this is a public ...
Server Error in '/Remote' Application Please review the stack trace for more information about the error .... This is a fatal error if I am remote and trying to get in to my WHS, ...
Mambo site on my remote server doesn' work.. HELP! - Mambo ... Mambo site on my remote server doesn' work.. HELP! General Questions. ... It is probably a path error. If you can't find your base path, you can run a php info file to get it. The error you're getting in phpmyadmin is ...


Videos:
Shperthimi Ne Vore-Gerdec- in Albania -Follow up Video Department of Environmental Sciences stands ready to provide you with services from its following divisions: www.chppmeur.healthcare.hqusareur ...
Authors@Google: Michael Chorost Author Michael Chorost visits Google's headquarters in Mountain View, CA, to discuss his book "Rebuilt: How Becoming Part Computer Made Me More ...
Assistive Vision Technology for the Blind: Recognizing ... Google Tech Talks September 5, 2006 Serge Belongie
Distributed continuous quality assurance Google London Test Automation Conference (LTAC) Google Tech Talks September 8th, 2006 Presenter: Adam Porter
LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS & IF Gymjunnky.com Welcome to learn vb.net this is tutorial 3 and my name is Gym_ In this lesson were going to learn some tricks with duel forms and ...












presenting files for download...

sql express connection

auto display multilanguage

event is being raised in web user control, but container page never "hears" it

html design view

web form buttons

load test tool

architechure with linq to sql

testing for null values

trace

web development project

permissions error with fileupload control visual web developer express

connectivity issue

tricky.. please help me!!

iis refreshes client for a change

specified cast is not valid error during insert into database

export and save word documents on server

it's my first question

linq question : can only enumerate once

gis/gps application

windows service that waits for file change

trouble loading stylesheet

browser view / error http 404/ server error problems

menuitems are not following css style

how can i access variable from .cs file by script?

abyss problem

type 'parser' is not defined

online catalog

read the (html) source code of other websites?

configuratin error

best approach - update 10-2000 records

why am i getting this error? how to serializable an checkbox

unusual "object reference not set to an instance of an object"

declaring a date constant?

what's the best method?

how to use user input from textbox to query database

theoretical question.

auto update database onselectedindexchange

images and db's

excel import

edit project on remote computer

need serious help!-using html code inside function call(asp to asp.net)

print records in a formatted style c#

date time picker

how can i display a custom template if my asp:repeater data source is empty?

best practice

urgent: index was out of range error

printing a paged datagrid

how can i "mask" the current website.

dynamic css pages?

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT