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.

Say I make a request to log into a site, using cURL.

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $URLs["sign_in"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cj.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cj.txt");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $pData);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_REFERER, $URLs["home"]);
curl_exec($ch);
curl_close($ch);

Now, say I make another request to get another page. How can I keep the same sessions & cookies I had (in the previous code) alive in my next request? I tried this, not working:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $URLs["enter"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cj.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cj.txt");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_REFERER, $URLs["home"]);
$data = curl_exec($ch);
curl_close($ch);

BTW, this is all in the same PHP file.

Any ideas? Thanks in advance!

share|improve this question

1 Answer

up vote 0 down vote accepted

It works for me.

Check that you have permission for cj.txt to be writeable. Or, if cj.txt doesn't exist, make sure you have permission to create it (directory execute permissions, I believe).

share|improve this answer

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.