Pregunta

Me hizo un cambio de configuración en mi SharePoint 2010 de aplicaciones web (anteriormente cuestión) que habilita el acceso anónimo y ahora mi sitio rendimientos errores 404 !? Incluso cuando cambie la configuración de nuevo no se resuelve el error. Para empeorar las cosas ahora mi sitio de administración central devuelve el mismo error 404. En cuanto a la fuente de la página de error 404 que veo un httpError ... CheckSuspiciousPhysicalPath.

¿Alguna idea sobre cómo depurar este sería grande.

¿Fue útil?

Solución

For 404's I generally check this

  • Can anyone else access the page?
  • Is the master page published?
  • does the user have permissions to the user page?
  • Is the page layout published?
  • does the user have permissions to the page layout?
  • any other resources, such as controls (ASCX) not available to the user with 404's

For anonymous sites I will most often solve it after verifying publishing status and permissions on the master page.

Otros consejos

My tools of choice for this would be Fiddler, to see what is going on at the HTTP level, and Process Monitor to see what happens on the file system.

Havent tried it, but I saw this trick for SharePoint 404's: http://blog.mediawhole.com/2010/02/sharepoint-404-resource-cannot-be-found.html

Yeah View Source when you see that error and the stack trace will usually point you directly to the control or reference that's missing.

Licenciado bajo: CC-BY-SA con atribución
scroll top