Cartella web.config
Autor: Matteo M.
Besucht 1866,
Followers 1,
Geteilt 0
buongiorno, dopo aver costruito il sito con website, il servizio di hosting mi dice che manca la cartella "web.config". volevo sapere se il programma crea in automatico questa cartella oppure devo fare in altra maniera! grazie!
Gepostet am
Non mi risulta che il programma crei una cartella del genere quando pubblichi il sito.....a menochè non hai inserito qualche codice esterno che la richieda
.......secondo me è una qualche cartella che deve già stare nello spazio web che hai acquistato
Autor
l'errore che mi da è questo:
Server Error in '/' Application.
Runtime ErrorDescription: 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>
così da come è scritto.......ti conviene contattare il gestore del tuo spazio web
Autor
infatto gli ho telefonato e mi dicevano che era tutto perfetto tranne che manca questo file web.config, senza il quale il sito non parte...tu per caso hai idea di come dovrebbe essere questo file?
grazie mille per la gentilezza!
Non so se è lo stesso che chiedono loro ma prova qui è l'unico che ho trovato
http://en.wikipedia.org/wiki/Web.config
Autor
ok grazie mille!