Cookie and cURL
1.
Влад (15.11.2013 / 20:23)
Пишу бота для игры и столкнулся с проблемкой, не записываются Cookie. Где ошибка?
<?php
$post_data = array (
"user_name" => "rgzrgz",
"user_password" => "qwerty",
"submit" => "commit"
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://wekings.ru/visitor/process_login');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
$data = curl_exec($ch);
curl_close($ch);
header('Location: /battle.php')
?>
2.
orel (15.11.2013 / 20:31)
1.
danan, Первое, указать полный путь к cookie.txt, к примеру /home/user/public_html/cookie.txt, ну и права на дирикторию
3.
Влад (15.11.2013 / 20:39)
2.
Орёл, помогло
4.
Влад (15.11.2013 / 21:19)
можно ли HOST подменить?
5.
orel (15.11.2013 / 21:27)
Может реферала? curl_setopt($ch, CURLOPT_REFERER, 'http://referer');
URL:
https://visavi.net/topics/39475