¡¡¡URGENTE!!! Subir aplicacion a un servidor
Publicado por Pedro PH (1 intervención) el 19/09/2005 23:49:43
Hola.
Tengo una aplicacion hecha en ASP.NET que funciona correctamente en el localhost de mi PC, pero necesito subirla a un alojamiento virtual que tengo contratado con www.sync.es, que soporta ASP.NET.
He copiado y pegado los archivos de mi proyecto en el servidor, pero al intentar entrar en la aplicación desde internet me denega el acceso.
Me muestra este error:
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>
------------------------------------------------------------------------------------------------------------
Por favor, si alguien sabe lo que ocurre o le ha pasado algo similar le ruego que me conteste con la mayor brevedad posible ya que se trata de un tema muy urgente.
Muchas gracias.
Tengo una aplicacion hecha en ASP.NET que funciona correctamente en el localhost de mi PC, pero necesito subirla a un alojamiento virtual que tengo contratado con www.sync.es, que soporta ASP.NET.
He copiado y pegado los archivos de mi proyecto en el servidor, pero al intentar entrar en la aplicación desde internet me denega el acceso.
Me muestra este error:
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>
------------------------------------------------------------------------------------------------------------
Por favor, si alguien sabe lo que ocurre o le ha pasado algo similar le ruego que me conteste con la mayor brevedad posible ya que se trata de un tema muy urgente.
Muchas gracias.
Valora esta pregunta


0