Re: [PHP] unable to upload a directory using the web brower(HTTP).

2004-11-16 Thread Scott Fletcher
I can try that but right now I have a bigger problem. The web browser can't upload folder, so I'm stuck there for now. I'm looking into JAVA as a workaround to this problem. Scott "Angelo Zanetti" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > cant you create the folder using php

Re: [PHP] unable to upload a directory using the web brower (HTTP).

2004-11-15 Thread Angelo Zanetti
cant you create the folder using php and then copy the contents (files) to the newly created folder? eg: $uploaddir = $_SERVER['DOCUMENT_ROOT'] . '/mydir/''; if(!is_dir($uploaddir)) { $old = umask(0);

Re: [PHP] unable to upload a directory using the web brower (HTTP).

2004-11-15 Thread Scott Fletcher
Um, look like I'm going to have to write a JAVA programming and have a couple of friends to come to help me out with it. Suck though! So, applets it is... Zip it up, that gonna be tought because of lack of good cross-platform support. We have Robo-Help for Windows, since windows zip only work

Re: [PHP] unable to upload a directory using the web brower (HTTP).

2004-11-15 Thread John Holmes
> From: "Scott Fletcher" <[EMAIL PROTECTED]> > I found that on most web browsers, I can not upload the > folder via HTTP using hte web browser upload dialog box. > So, I can't use the php's function, is_uploaded_file and > move_uploaded_file. Because the web browser see the folder > as something

Re: [PHP] unable to upload a directory using the web brower (HTTP).

2004-11-15 Thread Marek Kilimajer
Scott Fletcher wrote: I found that on most web browsers, I can not upload the folder via HTTP using hte web browser upload dialog box. Most? I thought all. So, I can't use the php's function, is_uploaded_file and move_uploaded_file. Because the web browser see the folder as something to open with,

[PHP] unable to upload a directory using the web brower (HTTP).

2004-11-15 Thread Scott Fletcher
I found that on most web browsers, I can not upload the folder via HTTP using hte web browser upload dialog box. So, I can't use the php's function, is_uploaded_file and move_uploaded_file. Because the web browser see the folder as something to open with, like going down one directory. So, any ad