Ask a Question related to ASP.NET Security, Design and Development.
-
Bernie Raffe #1
Exception - Could not find a part of the path "D:\"
I've just deployed my .Net Web app at an ISP on a shared
server.
Whenever I try to create a new directory, an exception is
raised - Could not find a part of the path "D:\"
I'm 100% certain that the directory path is correct, and
in fact one of the 3rd party components that I use tries
to create a 'thumbnails' directory (for images), and the
same exception is raised at that pont.
The first directory that it tries to create is:-
D:\WWWRoot\clubnoticeboardcom\www\ClubData\ClubNo3 0
(everything already exists apart from the
final 'ClubNo30' directory)
This doesn't appear to be the same error as occurs when
ASPNET doesn't have write permissions, it looks as though
its complaining about the root level directory.
Here's the code I use, but as I say - i'm pretty sure its
not a coding problem because even a 3rd party
professional component causes the same exception to be
raised.
private void createClubDirectories(int iClubId)
{
string strFullPath =
HttpContext.Current.Request.PhysicalApplicationPat h
+ "ClubData\\ClubNo" + iClubId.ToString();
Directory.CreateDirectory(strFullPath+);
}
The ISP confirms that the ASPNET account has write/modify
permissions to the roor level directory and to the
ClubData directory.
Can anybody help please?
Thanks,
Bernie
Bernie Raffe Guest
-
"Could not find a part of the path… " error on IIS 6.0
I have an ASP.NET web application running on a load-balanced Windows Server 2003 web farm running IIS 6.0, using Active Directory authentication. ... -
Windows Server 2003/IIS 6.0/ASP.NET "Could not find a part of the path"
I have an ASP.NET web application running on a load-balanced Windows Server 2003 web farm running IIS 6.0, using Active Directory authentication. ... -
Modify>Alter Path> "Inset Path" and "Expand Stroke" ERRONEOUS??
Sometimes I have tried to make some custom paths, for example letter 'A' converted to paths (Times New Roman font), and when I tried to use command... -
Removing ".." and "." from a file path
I only found the "File.expand_path" function to make a relative into an absolute path, but what about the ".." and "." components. I need a... -
replacing part of the path for "tar"
Hi, I have to tar -xvf ebf100.30.tar, but when I do it it creates an ebf10030 directory inside the target directory and puts all the stuff... -
kurt #2
Re: Exception - Could not find a part of the path "D:\"
Hello,
I was wondering if you have found already a solution to your problem.
Me, I have exactly the same problem. My application is hosted at a
server by catalyst2 and they assured me to that the settings are
correct.
If you found a way out of this I would appriciate if you, or somone
else, could give me a clue what's going on.
Kind regards,
Kurt
kurt Guest
-
kurt #3
Re: Exception - Could not find a part of the path "D:\"
Hello,
I was wondering if you have found already a solution to your problem.
Me, I have exactly the same problem. My application is hosted at a
server by catalyst2 and they assured me to that the settings are
correct.
If you found a way out of this I would appriciate if you, or somone
else, could give me a clue what's going on.
Kind regards,
Kurt
kurt Guest
-
Bernie Raffe #4
Re: Exception - Could not find a part of the path "D:\"
Hi Kurt,
We did sort this out eventually.
I had a hard time convincing the ISP that the problem was at their end
and not my code, but in the end they persevered and managed to resolve
the problem at their end.
Unfortunately, they refused to tell me the exact fix that they made, and
only said that it was a 'permissions' problem.
The ISP is at [url]www.hostway-uk.com[/url], I would suggest that your ISP gets in
touch with them. Tell your ISP to refer to my domain name which is
[url]www.clubnoticeboard.com[/url] - that should jog Hostways mememories.
Hope this helps - you can contact me directly at [email]bernieraffe@bigfoot.com[/email]
Cheers,
Bernie
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bernie Raffe Guest



Reply With Quote

