How would I write a Perl CGI script that receives a file via a HTTP post and saves that to the file system?
|
feedback
|
|
Just a note: however you will write it, don't save it in a place accessible from your web-server. And now to the point: below is a script which I was using for some time for photo-uploading. It might need some tweaking, but should show you the way. As the image isnt uploaded to web-accesible directory, we then have separate process checking it, resizing, putting a watermark and placing it where it can be accessed.
| |||||
feedback
|
|
Use the CGI module.
| ||||
|
feedback
|
|
| ||||
|
feedback
|
|
I'd start by using CGI and reading CREATING A FILE UPLOAD FIELD, and using open to create a file and print to write to it. (and then close to close it). | ||||
|
feedback
|