Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to login in http://www.xxxxxxx.com/login.asp with cURL but it doesn't work.

I can't find the source of the problem. I've compared the requests(mine and the one that browser makes) with Wireshark and there is not problem.

I've tried in few different ways but still can't get it to login.

Here is my code:

$username="MyUsername"; 
$password="MyPassword"; 
$url="http://www.xxxxxxx.com/login.asp?KO=1&PG=&TB=&S=&LC=menu_ge"; 
$cookie="cookie.txt"; 
$cookieFile="cookies.txt";


$postdata = "emailaddress=".$username."&password=".$password."&action=+Log+in+"; 

$header = array("POST /login.asp HTTP/1.1",
                 "Host: www.xxxxxxx.com",
                 "Connection: close",
                 "User-Agent: Mozilla/6.0 (Windows NT 6.2; WOW64; rv:16.0.1) Gecko/20121011 Firefox/16.0.1",
                 "Accept-Encoding: gzip",
                 "Accept-Charset: ISO-8859-1,UTF-8;q=0.7,*;q=0.7",
                 "Cache-Control: no",
                 "Accept-Language: de,en;q=0.7,en-us;q=0.3",
                 "Referer: ".$url,
                 "Content-type: application/x-www-form-urlencoded",
                 "Content-length: 0"
                 );


$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_URL, $url); 
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt ($ch, CURLOPT_TIMEOUT, 60); 
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookieFile);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie); 
curl_setopt ($ch, CURLOPT_REFERER, $url);

curl_setopt ($ch, CURLOPT_POST, TRUE); 
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata); 

$result = curl_exec ($ch);
$info = curl_getinfo($ch);
$errorMessage = curl_errno($ch);
$errorNumber = curl_error($ch);

curl_close($ch);
share|improve this question
1  
You are not being descriptive enough about how it is "not working" - you can do an echo $result; to see if the site you are trying to log into with curl is returning an error or output $errorMessage and $errorNumber and post them in a place for people to see. Without that information or the website you are trying to log into, it is impossible to help. – Jack Jan 10 at 16:29

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.