I having a problem with uploading files to my IIS server. My files uploads only in C: and in any folder C:/something. When i change the adrress to C:/inetpub/wwwroot/www.server.com/ i have a problem. I think permission problem !! Any ideas????
Try using windows style slashes in your paths since you are on a windows box.
this ... C:/inetpub/wwwroot/www.server.com/
should be this ... C:\inetpub\wwwroot\www.server.com\
I though I read that on windows, you need to use double slashes? Now that I think about it, I'm not sure.
I think you only need to use double slashes when you are using the path as string where the slash needs to be escaped. If you are specifying a path, I believe only one slash is necessary.
ok i tried to changhe slashes / and \ but nothing!! if the path is C: i dont have any problem or c:/inetpub but deeper C:/inetpub/wwwroot and next i have! maybe i must change something in php.ini??? tnx