Search found 13 matches

by jmaster
Wed Jun 30, 2010 6:19 am
Forum: JFileDownload
Topic: Path issues
Replies: 1
Views: 6958

Path issues

Hello again, I am having issues with download from folder's subfolders. For example: download folder path: www.abc.com/members/download specific subfolder path: www.abc.com/members/download/suzie The following works, but it downloads everything under /download document.write('item1="download" '); Th...
by jmaster
Wed Jun 30, 2010 5:05 am
Forum: JFileDownload
Topic: re: file not found.
Replies: 2
Views: 8259

Re: re: file not found.

Hello again. This may seem embarassing but it was an absent-minded mistake (lack of sleep) that caused some typo mistake, which in turn caused the excellent jfd to not work. I accidently used different url to test the actual url, and of course, it couldn't find the process.php. Naturally, it worked ...
by jmaster
Tue Jun 29, 2010 4:53 pm
Forum: JFileDownload
Topic: re: file not found.
Replies: 2
Views: 8259

re: file not found.

Hello sir! I was testing out Jfiledownload - using applet_http_download.js, process.php and explorer.php. I was trying to download the file testpic.jpg, but it always said file not found. I've included explorer.php within process.php. I have played with the value6's values, with different folders an...
by jmaster
Fri Jun 25, 2010 10:48 am
Forum: JFileUpload
Topic: re: Errors uploading after updating to Java 6.20.
Replies: 3
Views: 8715

re: Errors uploading after updating to Java 6.20.

Hello. Before downloading the 6.20 version of Java, uploading and resuming worked (via http). However, after downloading and installing 6.20, problems came during uploads. Examples of errors: 1. The speeds of upload would go up to 8000kbps (from where we are, thats not the speed we have) 2. Status w...
by jmaster
Mon Nov 02, 2009 11:33 am
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

By the way, is there is a way to post private message here on this board, other than to your email?

Thanks.
by jmaster
Mon Nov 02, 2009 11:28 am
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

Hello.

I have tried removing the following,

if (get_magic_quotes_gpc()) $filename = stripslashes($filename);

but the messed up subfolders returned.

Overall, I think using ziponfly is the best alternative option over this issue.

Thanks a lot for the help.
by jmaster
Mon Nov 02, 2009 5:08 am
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

Hello. I managed to fix the previous problem, where the uploaded files with subfolders were messed up. The cause and fix for this is in this condition based on get_magic_quotes_gpc (in PHP). if(get_magic_quotes_gpc()) { $relative = stripslashes($relative); $file_name = stripslashes($file_name); } Re...
by jmaster
Fri Oct 30, 2009 7:30 am
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

Hello.

Yes, no "template" was used.

I just tried again to upload multiple folders with IE, and its the same with Firefox, where the folders became jumbled up in the server.

Could it be how "process.php" handles the naming of the files / folders?

Thanks.
by jmaster
Thu Oct 29, 2009 12:55 pm
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

Just tested uploading multiple folders using different browsers, other than Firefox. It appears that in IE, the folder structures are retained perfectly. But not in Firefox. I wonder why.
by jmaster
Thu Oct 29, 2009 8:34 am
Forum: JFileUpload
Topic: Apache configurations for HTTP PUT
Replies: 14
Views: 60952

Re: Apache configurations for HTTP PUT

Hello. Thanks for the quick reply. These are the current PARAM settings i use. document.writeln('<PARAM NAME="paramfile" VALUE="uploadfile">'); document.writeln('<PARAM NAME="param1" VALUE="todo">'); document.writeln('<PARAM NAME="value1" VALUE="upload">'); document.writeln('<PARAM NAME="param2" VAL...