|
|
|
ใช้ curl ต่อ proxy แล้ว submit from ไปแล้วขึ้นแบบนี้หมายถึง proxy ไม่ให้ส่งข้อมูลหรือผมเขียนผิดครับ |
|
|
|
|
|
|
|
รูปนะครับ มีทางอื่นไหมครับที่จะให้ curl ต่อ proxy ก่อนถึงค่อยเข้าไป submit from ครับ
Code (PHP)
$data = array( 'noverify'=>1 , 'user'=> $data['username'] , 'passwrd' => $data['password'] ,'hash_passwrd'=>$data['password'], 'cookielength'=>'60');
$ch = curl_init($website . "/index.php?action=login2");
// set URL and other appropriate options
//curl_setopt($ch, CURLOPT_URL, $website . "/index.php?action=login2");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HEADER, 0);
$agent = "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)";
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIEFILE, dirname(__FILE__).'/cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, dirname(__FILE__).'/cookie.txt');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$a = curl_exec($ch);
Tag : PHP, CakePHP
|
ประวัติการแก้ไข 2012-09-01 00:05:39 2012-09-01 08:16:44
|
|
|
|
|
Date :
2012-08-31 19:55:39 |
By :
sakang |
View :
1197 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แทรกรูปให้ถูกกฏก่อนครับ
|
|
|
|
|
Date :
2012-09-01 00:04:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้หรือป่าวครับ
|
|
|
|
|
Date :
2012-09-01 00:06:06 |
By :
sakang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมยังไม่เคยใช้ curl ครับ เลยไม่รู้จะแนะนำยังไงครับ
|
|
|
|
|
Date :
2012-09-01 20:46:54 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|