large file to upload
Posted: Wed Jan 10, 2007 11:16 am
Hello,
I need to create a tool for a client where users can upload their graphic images and pay for them.
Then we do something with it and send it back to them. My problem is that these files are big (200MB) so I can't really use the php upload file method.
I thought to use ftp applet but this is not a good solution because I can't track which files they will upload - and this is very important to me to link between the file and the payment - something like:
$order_id = 100;
$file = "test.jpg";
what are my other options to solve this problem?
I do hope I am clear enough
Assaf
I need to create a tool for a client where users can upload their graphic images and pay for them.
Then we do something with it and send it back to them. My problem is that these files are big (200MB) so I can't really use the php upload file method.
I thought to use ftp applet but this is not a good solution because I can't track which files they will upload - and this is very important to me to link between the file and the payment - something like:
$order_id = 100;
$file = "test.jpg";
what are my other options to solve this problem?
I do hope I am clear enough
Assaf