2009-08-14 7 views
9

Je développe un script PHP pour gratter ce site et m'envoyer les données par e-mail. Il semble se connecter correctement car lorsque le script s'exécute, il semble rediriger et me donner un message disant Object déplacé ici et le ici est lié à la page default.aspx qui est ce qui se passe exactement lorsque je me connecte manuellement.php ssl curl: objet déplacé erreur

ci-dessous est mon script:

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

?> 

des idées qui pourraient empêcher la page de sortie correctement la page? Je suppose qu'il ne redirige pas correctement.

merci à l'avance

Répondre

11
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); 

changement qui à 1. En outre, réglez ce paramètre après CURLOPT_SSL_VERIFYPEER:

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); 
+0

génial! qui l'a réparé. – phill

+0

Jetez aussi un coup d'oeil dans CURLOPT_MAXREDIRS vous pourriez devoir l'employer (dans le futur?). –

+1

Pourquoi? Pourquoi l'utilisateur devrait-il les ajouter/les modifier? –

2

Vous pouvez utiliser suivant:

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // allow redirects 
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
curl_setopt($ch, CURLOPT_MAXREDIRS,5); // return into a variable 
+0

@ jeffrey-roosendaal merci pour le montage. –