Ver Mensaje Individual
  #6 (permalink)  
Antiguo 27/03/2007, 18:08
Avatar de Shiryu_Libra
Shiryu_Libra
Colaborador
 
Fecha de Ingreso: febrero-2007
Ubicación: Cantando "Screenager" en "Kirafa Kaput"
Mensajes: 3.614
Antigüedad: 17 años, 2 meses
Puntos: 88
Re: Error IIS 7 conexion a MS ACCESS

segun este POST y en este otro POST de Microsoft, toman tambien ese tema de conexion, al parecer es error en los permisos del usuario, quiero pensar que probablemente repare tu error, chekalo, y nos cuentas como te fue.... ok?

basicamente te piden que realizes este tipo de accion, para autentificar a los usuarios anonimos


Try the following:
("INTENTAR LO SIGUIENTE")
  1. %windir%\system32\inetsrv\appcmd set appPool "DefaultAppPool" -processModel.loadUserProfile:false

OR assuming your ASP page has anonymous authentication enabled:
("O ASUMIENDO QUE LA PAGINA ASP TIENE ACTIVADO EL ACCESO ANONIMO")


  1. icacls %WINDIR%\ServiceProfiles\NetworkService\AppData\Lo cal\temp /grant IUSR:(CI)(RX,WD,AD)
  2. icacls %WINDIR%\serviceprofiles\networkservice\AppData\Lo cal\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)

If you use authentication you should use this command:
("SI USAS AUTENTIFICACION DEBES USAR ESTE COMANDO")



icacls %WINDIR%\ServiceProfiles\NetworkService\AppData\Lo cal\temp /grant Users:(CI)(RX,WD,AD)



icacls %WINDIR%\serviceprofiles\networkservice\AppData\Lo cal\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)