Merhaba arkadaşlar curl'de veriyi ekrana bastığımda
http://localhost/cdn-cgi/l/chk_jschl...schl_answer=17
böyle bir sayfaya yönlendiriyor
Not Found
The requested URL /cdn-cgi/l/chk_jschl was not found on this server.
Apache/2.2.8 (Win32) PHP/5.2.6 Server at localhost Port 80
bu şekilde bir hata alıyorum sizce sebebi nedir ?
<?
$curl = curl_init();
curl_setopt($curl, CURLOPT_REFERER, "http://destek.oyna.la/index.php?m=server&p=server_bilgi&server_id=xxx&ip=95.173.173.xxx&islem=panele_gir");
curl_setopt($curl, CURLOPT_URL, "http://panel.oyunyoneticisi.com/giris_acil.php?px=1&submitBtn=pp&username=BURASISERVERIPS&password=BURASISIFRESI");
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
$veri = curl_exec($curl);
curl_close($curl);
?>
<?
echo $veri;
?>