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.

Please help.

This works

<?php
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, 'http://192.168.0.14:8081/home/' );
curl_setopt($ch, CURLOPT_USERPWD, 'Mike:mike');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$curl_response = curl_exec($ch);
curl_close($ch);
echo $curl_response;
?>

But when I use variables it asks for authentication. I have the details in a config file and its required_once. That isn't the issue as it picks up the $url fine just not user and pass

$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_USERPWD, "$user:$pass");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$curl_response = curl_exec($ch);
curl_close($ch);
echo $curl_response;

Please advice on what might be the issue. Thanks

share|improve this question
1  
There is no fundamental difference between 'Mike:mike' and "$user:$pass" with $user = 'Mike' and $pass = 'mike'. Verify that echo "$user:$pass" is what you expect. – zneak May 30 '11 at 22:56
what is the response code ? – hish May 30 '11 at 22:56
Can you give us an example of what your config file looks like? Are you sure you're not accidentally clearing those variables somewhere else during execution? – gnxtech3 May 30 '11 at 22:56
what is the echo $curl_response – hish May 30 '11 at 22:57
Its parsing the variables fine. I think the page might be asking for authentication twice or I'm making it do that so the error is in the rest of my code. Nevermind. Thanks – Michael May 30 '11 at 23:01
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.