php ssl curl : Objekt verschoben Fehler

Im Rahmen der Entwicklung einer php-Skript zu kratzen, diese website und mailen Sie mir die Daten zu mir. Es scheint sich einloggen korrekt, weil wenn das Skript ausgeführt wird, es scheint umleiten, und geben Sie mir eine Nachricht, Objekt verschoben Hier und das hier ist mit dem Standard.aspx-Seite, die ist, was genau passiert, wenn ich manuell anmelden.

Unten ist mein Skript:

<?php
$useragent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1";

//INIT CURL
$ch = curl_init();

//init curl 
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);

//SET URL FOR THE POST FORM LOGIN
curl_setopt($ch, CURLOPT_URL, 'https://access.manager.com/Login.aspx');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);

//Set your login and password for authentication
curl_setopt($ch, CURLOPT_USERPWD, 'testu:passwd');
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);


//This is occassionally required to stop CURL from verifying the peer's certificate.
//CURLOPT_SSL_VERIFYHOST may also need to be TRUE or FALSE if
//CURLOPT_SSL_VERIFYPEER is disabled (it defaults to 2 - check the existence of a
//common name and also verify that it matches the hostname provided)
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

//Optional: Return the result instead of printing it
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

//ENABLE HTTP POST
curl_setopt ($ch, CURLOPT_POST, 1);

//SET POST PARAMETERS : FORM VALUES FOR EACH FIELD
curl_setopt ($ch, CURLOPT_POSTFIELDS, 'Username=testu&Password=passwd');

# Setting CURLOPT_RETURNTRANSFER variable to 1 will force cURL
# not to print out the results of its query.
# Instead, it will return the results as a string return value
# from curl_exec() instead of the usual true/false.
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

//EXECUTE 1st REQUEST (FORM LOGIN)
$store = curl_exec ($ch);
echo $store;
//CLOSE CURL
curl_close ($ch);

?>

irgendwelche Ideen, was könnte verhindern, dass sich die Seite um die Ausgabe der Seite korrekt? Ich vermute, dass seine nicht umleiten richtig.

vielen Dank im Voraus

InformationsquelleAutor phill | 2009-08-14
Schreibe einen Kommentar