Merhaba arkadaslar,
Bir bot yapıyorum.Fakat sorun yaşamaktayım.
Google Chrome ile çektiğim videolar sorunsuz çalışıyorken, Internet Explorer'da çalışmıyor.
403 hata sayfası döndürüyor Explorer.Oysa chrome sorunsuz.
Bu problemi nasıl aşabilirim?
CURL kodlarım
function curl_cek($url){
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER["HTTP_USER_AGENT"]);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
$rmx = curl_exec($ch);
curl_close($ch);
return $rmx;
}