Resize does not function (with Flash uploader)

See all posts See thread Reply

Re: Resize does not function (with Flash uploader) new!
by colin, 16 years ago
First, this:
$u = new upload($_FILES['Filedata']['tmp_name])
should be:
$u = new upload($_FILES['Filedata'])
(beware of multiple uploads, check the FAQ if you upload several files at a time)

Also try to set no_script to false:
$u->no_script = false;

Do you use the 0.26RC1?Reply