-
Hum, hum,
Please check the new applet parameter: httpUploadParameterType
Then, I upgrade the PHP sample that is in the wiki, and I put it into Subversion. It will be available in next releases. You can still use it, by manully checkout from SVN or download the availables files at this URL:
http://jupload.svn.sourceforge.net/viewvc/jupload/trunk/wwwroot/samples.PHP/.
2010-01-07 10:11:59 UTC by etienne_sf
-
I mean: no configuration way. It's of course possible to hack the applet, but I don't think it's really useful.
2010-01-07 10:08:27 UTC by etienne_sf
-
There is currently no way to remove this HEAD request.
Etienne.
2010-01-07 10:07:56 UTC by etienne_sf
-
Ahh, I see. That makes sense. I don't suppose it's possible to turn it off? I actually don't need that functionality, as if the user can access the page containing the Applet, then the Applet will be able to find the server (since they're the same page...), and any 301/302 responses would constitute an error for us.
If it's not, then it obviously won't be hard to work around :).
Anyways...
2010-01-06 23:34:55 UTC by ipsi
-
Hi Etienne,
POST vars are not being sent as an array in the latest version. E.g. upload a file and you get the following:
$_POST
[mimetype0] => application/pdf
[pathinfo0] => F:\Data
[relpathinfo0] =>
[filemodificationdate0] => 24/10/2008 15:01:48
[md5sum0] => 8c2d2f52e9cd91ed9ed0b4761dea24ff
$_FILES
[File0] => Array
(
[name] =>...
2010-01-06 17:48:58 UTC by bilbo_uk
-
Hi,
I guess /pics/ doesn't exist, or it exists on another disk than the current one.
You probably miss one 'point', and the folder should probably be:
./pics/
or
/Your/full/web/path/pics/
If this is true, your server side script should have reported an error to the applet, by putting a line like this one in the response:
ERROR: Folder /pics/ doesn't exist.
Etienne.
2010-01-06 16:22:34 UTC by etienne_sf
-
Please, I am using v4.6.0 with the parseRequest.jsp file provided in wwwroot/pages/. I replaced the value "/temp/" for ourtempDirectory with "/pics/" which is a subdirectory in my web directory. the applet will upload and return no error but the file is not actually uploaded to the specified folder. But when I changed the value to "c:/pics/" it works. is there a way to upload the pictures...
2010-01-06 14:10:34 UTC by mubash
-
Hi,
Apparently, jexifviewer, like all java framework I've found, is only able to read EXIF, not to write them.
Unfortunately, JUpload is not able to update EXIF data. It may change, in the future, if a java library is created or updated with this functions, it would be possible.
Note: the http://reader.imagero.com/ site contains such a library. But it's not free. So I can't use it...
2010-01-06 13:36:15 UTC by etienne_sf
-
http://jexifviewer.sourceforge.net.
2010-01-06 13:31:17 UTC by nobody
-
That's exactly it !
This HEAD request is also used to identify any 301 or 302 (redirection) response. It's much simplier to manage it outside of an actual upload.
Having an empty response to this HEAD request is good enough. It's actually what I do too.
Etienne.
2010-01-06 11:53:06 UTC by etienne_sf