Jump to content

need help urgent cURL php


kals

Recommended Posts

I am trying to access my godaddy account using cURL but some error occurs
the error can be seen here:
http://sourcefreelance.com/godaddy/replace.php

the code is below:
[code]<?
$url="https://idp.godaddy.com/login.aspx?se=%2B&amp;spkey=GDSWEB91&amp;login=&amp;target=secure%5Ftransfer%2Easp";
$vars="PasswordTextBox=pass&UsernameTextBox=user&__EVENTTARGET&__EVENTARGUMENT&__VIEWSTATE=dDw3MDI1OTkxOTI7dDw7bDxpPDA+Oz47bDx0PDtsPGk8MT47PjtsPHQ8O2w8aTw1PjtpPDg+Oz47bDx0PHA8cDxsPEltYWdlVXJsOz47bDxodHRwczovL2ltYWdlcy5nb2RhZGR5LmNvbS9zc28vYnV0dG9ucy8xL2J1dF9zZWN1cmVsb2dpbi5naWY7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPFByb3RlY3RlZCBieSBhIEdvIERhZGR5IFNTTCBDZXJ0aWZpY2F0ZS4gU2VjdXJlIGFuZCAxMjgtYml0IGVuY3J5cHRlZCE7Pj47Pjs7Pjs+Pjs+Pjs+PjtsPExvZ2luSW1hZ2VCdXR0b247Pj6MHjUFoXuRslkGzQ7erW+h3AK/hQ==";

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_HEADER, 1);
  curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
  curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
 
      curl_setopt($ch, CURLOPT_POST, 1);
      curl_setopt($ch, CURLOPT_POSTFIELDS, $vars);

  $data = curl_exec($ch);
  curl_close($ch);
print $data;
?>
[/code]

Any help highly appreciated, can also be paid (first person to solve problem)
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.