It's working fine !
I should do the moveTo method, then it will be perfect. Actually it
only support one file upload, I should upgrade that feature.
So when I upload a file, and trace the files array (second parameters
of create) it says :
Upload.hx:62: {fl => { name => icon.png, tmpPath => /tmp/
fd9efab0bd25cd311d00d438b95f7abe }}
The file was currently icon.png, and when I go to /tmp/ I can see the
icon =)
So I'm kinda happy I get it to work that fast.
Tomorrow (or tonight) I'll complete it with moveTo and multi-file
import.
Thanks for the long-answer you give to me, it really helped me, I'd
never though I could do it by myself.
I'll submit it to you as soon as it's complete.
Thanks again.
Blue112.
On Feb 25, 4:41 pm, Andreas Söderlund <ciscoh...@gmail.com> wrote:
> Hi Blue, thanks for your interest in haxigniter! You're right, nothing
> exists for handling file uploads at the moment. However, the request handler
> system is built to be extended, so you can build your own
> RequestHandlerDecorator for handling file uploads:
>
> If you look athttp://github.com/ciscoheat/haxigniter/blob/master/haxigniter/server/...