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
'Mike:mike'and"$user:$pass"with$user = 'Mike'and$pass = 'mike'. Verify thatecho "$user:$pass"is what you expect. – zneak May 30 '11 at 22:56