Aplicación web en un hosting
Publicado por JL (6 intervenciones) el 25/02/2008 22:59:54
Hola a todos:
Tengo una aplicación web (.NET) y funciona bien en mi pc, pero lo he subido a un hosting(Dattetec.com) pero no puedo hacerlo funcionar. Creé la base de datos en MYSQL con el usuario del hosting y se creó sin problemas. Lo que no me funciona es comenzar a usar la aplicación.
Me tira esto en la web de inicio:
--------------------------
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>
----------------------------
Copié al directorio raiz del hosting la carpeta "bin" y todos los archivos que estaban dentro de la carpeta web que genera genexus.
Alguien puede ayudarme por favor..... MUCHÍSIMAS GRACIASS.....
Tengo una aplicación web (.NET) y funciona bien en mi pc, pero lo he subido a un hosting(Dattetec.com) pero no puedo hacerlo funcionar. Creé la base de datos en MYSQL con el usuario del hosting y se creó sin problemas. Lo que no me funciona es comenzar a usar la aplicación.
Me tira esto en la web de inicio:
--------------------------
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>
----------------------------
Copié al directorio raiz del hosting la carpeta "bin" y todos los archivos que estaban dentro de la carpeta web que genera genexus.
Alguien puede ayudarme por favor..... MUCHÍSIMAS GRACIASS.....
Valora esta pregunta


0