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);