Jump to content

bhavin12300

Members
  • Posts

    98
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

bhavin12300's Achievements

Member

Member (2/5)

0

Reputation

  1. please any one,any kind of help might take me out of this.
  2. hi experts, i got stuck during my project, need bit of your advice to find correct path. here is what i am doing in my php code. 1)my script create account on third party website(i have no control over this website) 2)there are 5 forms which i have to submit one by one to create account. 3)ii have successfully created code to submit first two forms and after submitting second form , i am getting third form in my response in script. 4)but when i am submitting data for third form, i am getting response in red text that "Please fill up all fields", i am getting this error message, which means that my code is submitting values to "action" form of third form, but some how its not accepting it or may be possible, my curl doing something wrong while sending data. all 5 forms are accepting data of content-type "multipart/form-data" and thats y i am sending all my data in array and assigning that array to "CURLOPT_POSTFIELDS". following is data send by browser to "action" script of form 3. -----------------------------792694871670 Content-Disposition: form-data; name="1" (Car#21) -----------------------------792694871670 Content-Disposition: form-data; name="2" (Car#22) -----------------------------792694871670 Content-Disposition: form-data; name="3" (Car#23) -----------------------------792694871670 Content-Disposition: form-data; name="4" (Car#24) -----------------------------792694871670 Content-Disposition: form-data; name="5" (Car#25) -----------------------------792694871670 Content-Disposition: form-data; name="6" (Car#26) -----------------------------792694871670 Content-Disposition: form-data; name="7" (Car#27) -----------------------------792694871670 Content-Disposition: form-data; name="8" (Car#28) -----------------------------792694871670 Content-Disposition: form-data; name="9" (Car#29) -----------------------------792694871670 Content-Disposition: form-data; name="10" (Car#30) -----------------------------792694871670 Content-Disposition: form-data; name="19.0.x" 42 -----------------------------792694871670 Content-Disposition: form-data; name="19.0.y" 9 -----------------------------792694871670-- and following is array i am posting using curl. $data_arry3["1"]="(Car#21)"; $data_arry3["2"]="(Car#22)"; $data_arry3["3"]="(Car#23)"; $data_arry3["4"]="(Car#24)"; $data_arry3["5"]="(Car#25)"; $data_arry3["6"]="(Car#26)"; $data_arry3["7"]="(Car#27)"; $data_arry3["8"]="(Car#28)"; $data_arry3["9"]="(Car#29)"; $data_arry3["10"]="(Car#30)"; $data_arry3['19.0.x']="58"; $data_arry3['.0.y']="4"; as far as i know, session,cookies and ref everything seems ok because, i am able to submit first two forms. i think problem is in data being send by curl to that server, something has changed by curl in data before sending to server, the reason i am saying this name of fields are numbers not alphabet. may be i am wrong. so experts any one can let me know whats i am doing wrong?? any advice will sure take me out of this. please if any question do let me know.
  3. its giving be FEB ,19 but when i see real feed in browser, its giving me feb ,20 (this "Saturday, February 20, 2010 3:53 AM" for )
  4. hi, i am parsing one atom feed in my php script. in which there is one tag called <update> which contain following value. 2010-02-19T17:23:53-05:00 in browser its displayed as "Saturday, February 20, 2010 3:53 AM" can any one let me know how to get same value in php script?
  5. hi, issue solved. my hosting team has solved it. the fault was on their side.
  6. hi, i have one simple script which does work fine on local computer but got following problem when i uploaded it server. The problem is, the server genarate 404 error if i pass query string paramter value of this next=http%3A%2F%2Fwww.anas-asarani.com%2Ffb%2F but it work perfectly fine if there is no % in its value. this does not work http://anas-asarani.com/fb/car.php?next=http%3A%2F%2Fwww.anas-asarani.com%2Ffb%2F this works http://anas-asarani.com/fb/car.php?next=asdkj can any one let me know whats wrong on server? waiting for your reply.
  7. first thanks for your reply rajivgonsalves. i added your two lines. i got error. GD was not insalled on server. after installing GD all well. thanks you so much.
  8. hi i have one simple code which add transparent color to image and save it as ".png". it works fine on my local computer using WAMP. but when i ran same code on server it generate no output image. my php version is 5.3 and server php versoin is 5.2 here is my code <?php $info = getimagesize("rose.jpeg"); $width = $info[0]; $height = $info[1]; $im = imagecreatetruecolor($width, $height); $image = @imagecreatefromjpeg("rose.jpeg"); $black = imagecolorallocate($im, 255, 255, 255); imagecolortransparent($im, $black); imagecopy($im, $image, 0, 0,0 ,0,$width, $height); imagepng($im, 'output.png'); imagedestroy($im); ?> can you let me know why whats reason? how can i make it run on server?/
  9. yes i did it and restarted it. my curl is enable.but still same problem.
×
×
  • 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.