I'm trying to upload an image to IMGUR via PHP. This is the code:

<?
$filename = "image.jpg";
$handle = fopen($filename, "r");
$data = fread($handle, filesize($filename));

// $data is file data
$pvars   = array('image' => base64_encode($data), 'mykey' => IMGUR_API_KEY);
$timeout = 30;
$curl    = curl_init();

curl_setopt($curl, CURLOPT_URL, 'http://api.imgur.com/2/upload.xml');
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $pvars);

$xml = curl_exec($curl);

curl_close ($curl);

?>

This is the error message I receive:

Warning: fopen(image.jpg) failed to open stream: No such file or directory

I don't understand the part: $filename = "image.jpg"; Where does the filename come from since it's a base64 generated string? Thanks, Bob

link|improve this question

42% accept rate
It means PHP can't find 'image.jpg' and so failed to "open" it. If the image file isn't in the same directory as this script, you'll have to specify a path pointing to the image. Either an absolute path (/path/to/image) or a path relative to the script (../../elsewhere/image.jpg). – Marc B Apr 12 '11 at 19:38
feedback

1 Answer

That warning is because fopen is trying to read in the file image.jpg from the directory from which your script is running. A good example on how to transfer a file through curl can be seen here

Send file via cURL from form POST in PHP

Where they have $localFile = $_FILES[$fileKey]['tmp_name']; you would put $localFile = '/path/to/image.jpg'; As well as change the server info and add in any other variables you may need to pass to imgur.

link|improve this answer
I don't undestand where "image.jpg" comes from. In my understanding the PHP generates it from the base64 string I send and then put it in the folder where the PHP file is in, right? – Michael Apr 12 '11 at 19:58
OK I think I found it. Just needed to delete this part: $filename = "image.jpg"; $handle = fopen($filename, "r"); $data = fread($handle, filesize($filename)); But there is still a question open - how do I receive a callback or response from IMGUR with the path to the uploaded image? – Michael Apr 12 '11 at 22:21
You will get back an xml response. You need to pull out the URL tag from the response that is save in the variable $xml. The documentation is here: api.imgur.com/responses – Ryan Matthews Apr 13 '11 at 13:39
I'm using Actionscript 3 (AS3) with the PHP to upload the image. I took this from the IMGUR examples but it returns just empty: var iresponse:XML = new XML(unescape(loader.data)); Any ideas? – Michael Apr 13 '11 at 15:42
How can I send the response from PHP to Flash? – Michael Apr 14 '11 at 15:14
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.