Hello,
I'm trying to use curl to upload images to imageporter. So far, uploading is working, but it's not uploaded to my account, which is really strange as I'm using cookies.

Code: 
curl --cookie-jar cookies.txt --data "op=login&redirect=&login=***&password=***&x=0&y=0" http://www.imageporter.com
That's for the cookie

Code: 
 curl -L -b ./cookies.txt -F "my_file_element=@/path/to/some.jpg" -F "adult=adult" -F "thumb_size=170x170" -F "tos=on" http://img52.imageporter.com/cgi-bin/upload.cgi?upload_id=
That's for the upload

Any idea on what's wrong with this command?
hover Reviewed by hover on . [help] Uploading images to imageporter with curl Hello, I'm trying to use curl to upload images to imageporter. So far, uploading is working, but it's not uploaded to my account, which is really strange as I'm using cookies. curl --cookie-jar cookies.txt --data "op=login&redirect=&login=***&password=***&x=0&y=0" http://www.imageporter.com That's for the cookie curl -L -b ./cookies.txt -F "my_file_element=@/path/to/some.jpg" -F "adult=adult" -F "thumb_size=170x170" -F "tos=on" Rating: 5