Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using a 3rd party PHP class to access an API, it has got the following code:

$fh = fopen('php://memory', 'w+');
fwrite($fh, $xml);
rewind($fh);
$ch = curl_init($req->to_url() );
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_PUT, true);
curl_setopt($ch, CURLOPT_INFILE, $fh);

On the last line, i.e this one:

curl_setopt($ch, CURLOPT_INFILE, $fh);

I'm getting the error:

Warning: curl_setopt() [function.curl-setopt]: cannot represent a stream of type MEMORY as a STDIO FILE*

What am I doing wrong?

share|improve this question
CURLOPT_INFILE defines an "input file" (not "into file"), that is probably not, what you are looking for, especially because $fh is open for writing. – KingCrunch Jul 27 '11 at 9:23

1 Answer

up vote 4 down vote accepted

Your Memory File Handle is only open for writing (w+). Add reading, e.g. try to set rw+ for the file handle.

share|improve this answer
Could it also be that I didn't have enough memory available? This code wasn't working on my local dev machine, but on the server it worked. I closed some applications as well as did this change, and now its working. – Click Upvote Jul 27 '11 at 9:30
4  
@Click Profile the memory to find out. An alternative would be to use php://temp instead of memory. That woud write to a temporary file if there isnt enough memory available. – Gordon Jul 27 '11 at 9:32
1  
thanks! :) ----- – Click Upvote Jul 27 '11 at 9:47
2  
Using php://temp fixed this issue for me (was already rw+) – Deebster Jun 11 '12 at 12:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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