CodeCharge Studio
search Register Login  

Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeChargeStudio.Discussion

 Am I missing somthing simple?

Print topic Send  topic

Author Message
Buzz
Posted: 12/11/2003, 1:06 PM

Greetings,

I have a app that when I publish it to the localhost it works fine, but when
I publish it out to the webserver, I get the following error: (Abbreviated).


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



The file is set this way, and when I choose the other options for custom
errors mode, I get the same problem.

There are no errors generated when I publish it locally.
Any thoughts?

Pepi Txispi
Posted: 12/11/2003, 2:33 PM

Hi, why donīt you talk with your hosting provider?


"Buzz" <don.busey@pfizer.com> wrote in message
news:bram8c$m4o$1@news.codecharge.com...
> Greetings,
>
> I have a app that when I publish it to the localhost it works fine, but
when
> I publish it out to the webserver, I get the following error:
(Abbreviated).
>
>
> Server Error in '/LineEfficiencies' 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>
>
>
>
> The file is set this way, and when I choose the other options for custom
> errors mode, I get the same problem.
>
> There are no errors generated when I publish it locally.
> Any thoughts?
>
>

DonB
Posted: 12/11/2003, 2:45 PM

I can't figure out the language or server you have from what you provided.
Apparently some sort of unix.

If it fails on the server, it's probably a safe bet that the database
connection is not working. The Web.config file is something I've never
heard of.

If all else fails, you can put Print "something" statements in your code
(check the syntax for whatever your language is) and at least narrow it down
to a line or two of code.

I really expect the database login failed or the database was not
accessible, etc.

--
DonB

http://www.gotodon.com/ccbth


"Buzz" <don.busey@pfizer.com> wrote in message
news:bram8c$m4o$1@news.codecharge.com...
> Greetings,
>
> I have a app that when I publish it to the localhost it works fine, but
when
> I publish it out to the webserver, I get the following error:
(Abbreviated).
>
>
> Server Error in '/LineEfficiencies' 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>
>
>
>
> The file is set this way, and when I choose the other options for custom
> errors mode, I get the same problem.
>
> There are no errors generated when I publish it locally.
> Any thoughts?
>
>

Don Safar
Posted: 12/11/2003, 2:52 PM

This is a .Net error. Are you sure the remote site has been configured as an
application within IIS?

"Buzz" <don.busey@pfizer.com> wrote in message
news:bram8c$m4o$1@news.codecharge.com...
> Greetings,
>
> I have a app that when I publish it to the localhost it works fine, but
when
> I publish it out to the webserver, I get the following error:
(Abbreviated).
>
>
> Server Error in '/LineEfficiencies' 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>
>
>
>
> The file is set this way, and when I choose the other options for custom
> errors mode, I get the same problem.
>
> There are no errors generated when I publish it locally.
> Any thoughts?
>
>

Buzz
Posted: 12/11/2003, 3:52 PM

Thanks for the input folks. It is working now. The only thing I did was went
into IIS and removed and re-created the Application Name. Weird!

"Buzz" <don.busey@pfizer.com> wrote in message
news:bram8c$m4o$1@news.codecharge.com...
> Greetings,
>
> I have a app that when I publish it to the localhost it works fine, but
when
> I publish it out to the webserver, I get the following error:
(Abbreviated).


>
> Server Error in '/LineEfficiencies' 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>
>
>
>
> The file is set this way, and when I choose the other options for custom
> errors mode, I get the same problem.
>
> There are no errors generated when I publish it locally.
> Any thoughts?
>
>


   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright Đ 2003-2004 by UltraApps.com  and YesSoftware, Inc.