miércoles 25 de marzo de 2009

Solucionando un problema

En este caso les voy a comentar un problema con el cual tuve que lidiar todo el dia de hoy...no se porque ni porque causa sharepoint dejo de andar y me generaba el sigueinte error..

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 tag within a "web.config" configuration file located in the root directory of the current web application. This 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 configuration tag to point to a custom error page URL.

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

Le hice caso al error y cambie dentro de mi web.config el tag customErrors donde decia On a Off

ahi el error cambio (siempre probando en la misma maquina servidor, si probamos en una pc cliente el error siempre va a ser el mismo). El error esta vez fue el siguiente...

Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Data at the root level is invalid. Line 1, position 1.
Source Error:
Line 1: Line 2: Line 3:
Source File: /App_Browsers/compat.browser Line: 1


La solucion fue borrar de mi carpeta
C:\Inetpub\wwwroot\wss\VirtualDirectories\80\App_Browsers

La carpeta llamada " _vti_cnf "

Reinicie el IIS "iisreset /noforce" desde linea de comando

Y solucionado el ERROR

Espero que esto pueda ayudar a alguien en algun momento la verdad que perdi mucho tiempo hoy tratando de solucionarlo.




0 comentarios:

Publicar un comentario en la entrada