Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net Security (http://www.velocityreviews.com/forums/f62-asp-net-security.html)
-   -   Access to path **** denied. (http://www.velocityreviews.com/forums/t767783-access-to-path-denied.html)

George Hardy 08-23-2005 09:53 PM

Access to path **** denied.
 
hello all,

why would the following error occur, and how is it fixed? It seems like IIS
cant create a temp directory. I also added the ASPNET user to the
\Temporary ASP.NET Files\ directory with full rights, but it didn't seem to
work.


Exception Details: System.UnauthorizedAccessException: Access to the path
"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\root\82d26208\ca478f3a" is denied.

thanks in advance!!!
george hardy



Dominick Baier [DevelopMentor] 08-24-2005 08:05 AM

Re: Access to path **** denied.
 
Hello George,

which OS are you running on?

---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com

> hello all,
>
> why would the following error occur, and how is it fixed? It seems
> like IIS cant create a temp directory. I also added the ASPNET user
> to the \Temporary ASP.NET Files\ directory with full rights, but it
> didn't seem to work.
>
> Exception Details: System.UnauthorizedAccessException: Access to the
> path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
> Files\root\82d26208\ca478f3a" is denied.
>
> thanks in advance!!!
> george hardy





George Hardy 08-24-2005 04:25 PM

Re: Access to path **** denied.
 
my development machine (where this works) is XP,

when i copy the site to the machine where it doesn't work, it is a Win2003
Server.

george


"Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
wrote in message news:784801632604748072446941@news.microsoft.com.. .
> Hello George,
>
> which OS are you running on?
>
> ---------------------------------------
> Dominick Baier - DevelopMentor
> http://www.leastprivilege.com
>
>> hello all,
>>
>> why would the following error occur, and how is it fixed? It seems
>> like IIS cant create a temp directory. I also added the ASPNET user
>> to the \Temporary ASP.NET Files\ directory with full rights, but it
>> didn't seem to work.
>>
>> Exception Details: System.UnauthorizedAccessException: Access to the
>> path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
>> Files\root\82d26208\ca478f3a" is denied.
>>
>> thanks in advance!!!
>> george hardy

>
>
>




WJ 08-24-2005 06:33 PM

Re: Access to path **** denied.
 
"George Hardy" <ghardy2k@no.spam.yahoo.com-nospam> wrote in message
news:ucf65gMqFHA.248@TK2MSFTNGP14.phx.gbl...
> my development machine (where this works) is XP,
>
> when i copy the site to the machine where it doesn't work, it is a Win2003
> Server.
>


1. "AspNet" and "Network Service" accounts should have write or full control
to this folder below:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files

2. When you deploy your app to Win2k3, donot copy files to the above folder,
instead, you deploy them to IIS Virtual folder/directory.

May be somebody modified your FS by chance ?

*** By default, when you first install .NetFW v1.1, the system should
already took care the above folder for you. You really donot have to touch
it.

John




Dominick Baier [DevelopMentor] 08-24-2005 07:10 PM

Re: Access to path **** denied.
 
Hello George,

on XP ASP.NET runs under the ASPNET account - under W2K3 under NETWORK SERVICE
by default (ASPNET is still included). This is configured via the Application
Pool feature in IIS6.

There is also a group called IIS_WPG - give this group full control to the
temp directory - if that works you can lockdown more if you like.

---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com

> my development machine (where this works) is XP,
>
> when i copy the site to the machine where it doesn't work, it is a
> Win2003 Server.
>
> george
>
> "Dominick Baier [DevelopMentor]"
> <dbaier@pleasepleasenospamdevelop.com> wrote in message
> news:784801632604748072446941@news.microsoft.com.. .
>
>> Hello George,
>>
>> which OS are you running on?
>>
>> ---------------------------------------
>> Dominick Baier - DevelopMentor
>> http://www.leastprivilege.com
>>> hello all,
>>>
>>> why would the following error occur, and how is it fixed? It seems
>>> like IIS cant create a temp directory. I also added the ASPNET user
>>> to the \Temporary ASP.NET Files\ directory with full rights, but it
>>> didn't seem to work.
>>>
>>> Exception Details: System.UnauthorizedAccessException: Access to the
>>> path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
>>> Files\root\82d26208\ca478f3a" is denied.
>>>
>>> thanks in advance!!!
>>> george hardy





George Hardy 08-25-2005 02:03 PM

Re: Access to path **** denied.
 
ok thanks, i will give it a shot...i might re-install iis too. that only
takes about 5 minutes anyway.

thanks a bunch.

george hardy


"WJ" <JohnWebbs@HotMail.Com> wrote in message
news:e3gdAmNqFHA.3800@TK2MSFTNGP11.phx.gbl...
> "George Hardy" <ghardy2k@no.spam.yahoo.com-nospam> wrote in message
> news:ucf65gMqFHA.248@TK2MSFTNGP14.phx.gbl...
>> my development machine (where this works) is XP,
>>
>> when i copy the site to the machine where it doesn't work, it is a
>> Win2003 Server.
>>

>
> 1. "AspNet" and "Network Service" accounts should have write or full
> control to this folder below:
> C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
> Files
>
> 2. When you deploy your app to Win2k3, donot copy files to the above
> folder, instead, you deploy them to IIS Virtual folder/directory.
>
> May be somebody modified your FS by chance ?
>
> *** By default, when you first install .NetFW v1.1, the system should
> already took care the above folder for you. You really donot have to touch
> it.
>
> John
>
>
>




George Hardy 08-25-2005 02:05 PM

Re: Access to path **** denied.
 
thanks for the info.

having much better luck now.

george hardy

"Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
wrote in message news:788820632605147504626102@news.microsoft.com.. .
> Hello George,
>
> on XP ASP.NET runs under the ASPNET account - under W2K3 under NETWORK
> SERVICE by default (ASPNET is still included). This is configured via the
> Application Pool feature in IIS6.
>
> There is also a group called IIS_WPG - give this group full control to the
> temp directory - if that works you can lockdown more if you like.
>
> ---------------------------------------
> Dominick Baier - DevelopMentor
> http://www.leastprivilege.com
>
>> my development machine (where this works) is XP,
>>
>> when i copy the site to the machine where it doesn't work, it is a
>> Win2003 Server.
>>
>> george
>>
>> "Dominick Baier [DevelopMentor]"
>> <dbaier@pleasepleasenospamdevelop.com> wrote in message
>> news:784801632604748072446941@news.microsoft.com.. .
>>
>>> Hello George,
>>>
>>> which OS are you running on?
>>>
>>> ---------------------------------------
>>> Dominick Baier - DevelopMentor
>>> http://www.leastprivilege.com
>>>> hello all,
>>>>
>>>> why would the following error occur, and how is it fixed? It seems
>>>> like IIS cant create a temp directory. I also added the ASPNET user
>>>> to the \Temporary ASP.NET Files\ directory with full rights, but it
>>>> didn't seem to work.
>>>>
>>>> Exception Details: System.UnauthorizedAccessException: Access to the
>>>> path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
>>>> Files\root\82d26208\ca478f3a" is denied.
>>>>
>>>> thanks in advance!!!
>>>> george hardy

>
>
>




Pat 08-29-2005 06:07 AM

Re: Access to path **** denied.
 
Good you got Dominick put you through .
WIN2003 server uses another acct not the same as ASPNET.
PAtrick
"George Hardy" <ghardy2k@no.spam.yahoo.com-nospam> wrote in message
news:Ov0Ch3XqFHA.3160@TK2MSFTNGP14.phx.gbl...
> ok thanks, i will give it a shot...i might re-install iis too. that only
> takes about 5 minutes anyway.
>
> thanks a bunch.
>
> george hardy
>
>
> "WJ" <JohnWebbs@HotMail.Com> wrote in message
> news:e3gdAmNqFHA.3800@TK2MSFTNGP11.phx.gbl...
> > "George Hardy" <ghardy2k@no.spam.yahoo.com-nospam> wrote in message
> > news:ucf65gMqFHA.248@TK2MSFTNGP14.phx.gbl...
> >> my development machine (where this works) is XP,
> >>
> >> when i copy the site to the machine where it doesn't work, it is a
> >> Win2003 Server.
> >>

> >
> > 1. "AspNet" and "Network Service" accounts should have write or full
> > control to this folder below:
> > C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
> > Files
> >
> > 2. When you deploy your app to Win2k3, donot copy files to the above
> > folder, instead, you deploy them to IIS Virtual folder/directory.
> >
> > May be somebody modified your FS by chance ?
> >
> > *** By default, when you first install .NetFW v1.1, the system should
> > already took care the above folder for you. You really donot have to

touch
> > it.
> >
> > John
> >
> >
> >

>
>





All times are GMT. The time now is 10:42 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57