ASP.NET - ¡¡¡URGENTE!!! Subir aplicacion a un servidor

 
Vista:

¡¡¡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.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:¡¡¡URGENTE!!! Subir aplicacion a un servidor

Publicado por Cristian Pereira (65 intervenciones) el 21/09/2005 00:38:08
Hola.

Para que te muestre el error en detalle de lo que esta pasando en tu servidor remoto cambia customErrors mode="RemoteOnly" por customErrors mode="Off" de tu web.config subelo a tu servidor y intenta acceder a ella, ahora te mostrara el verdadero error.

Saludos.

Cristian Pereira.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:¡¡¡URGENTE!!! Subir aplicacion a un servidor

Publicado por Pedro PH (4 intervenciones) el 22/09/2005 13:25:15
Muchas gracias Cristian, pero ya lo solucioné.

Un Saludo
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar