Hej allihopa, Ja, applikationen har inte rättighet att skriva i mappen där du laddar upp bilderna. Hej,Access to the path **** is denied...
Använder asp.net 1.x med vb och access som databas.
Jag har en funktion på min webbsida där användarna kan ladda upp bilder till servern. Det fungerarde finfint lokalt. Men när jag försöker göra det nu när sidan är online så får jag felmeddelande:
"Access to the path **** is denied..."
Är det någon rättighetsinställning som jag ska be webbhotellet ändra på? Är det därför det inte fungerar tro? Jag använder mig av server.mappath för att få fram sökvägen där bilden ska sparas. Och det verkar vara rätt sökväg!
Tacksam för svar,
//mvh Björn
____________________________________________________
Utförligt felmeddelande:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.UnauthorizedAccessException: Access to the path "d:\customers\bbque.se\guysnight.bbque.se\wwwroot\kvallbilder\159.jpg" is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
Source Error:
Line 60:
Line 61: 'Spara filen
Line 62: filen.postedFile.saveAs(sokvag_big)
Line 63:
Line 64: Sv: Access to the path **** is denied...
/JohanSv:Access to the path **** is denied...
Fick följande svar från mitt webbhotell:
-------------------------------------------------
Hej!
Innan vi ändrar rättigheterna skulle vi behöva veta om det är ASP.NET användaren
eller Internet guest accouny (IUSR) som ni vill ha skrivrättigheter för?
-------------------------------------------------
Vi ändrade det första alternativet och nu fungerar det!
//mvh Björn