Ben biraz daha araştırdım ve size ait olan paypal login sistemini kendi isteğime uyarlayarak ve firefox için headers özelliğinden faydalanarak aşağıdaki noktaya kadar getirdim durumu.
Öncelikle oyunun login sistemini tamamen öğrendim.
http://www125.popmundo.com/Common/En...firm&Submit=OK
diye giriş yapılıyor. Onu cURL'e göre yaptım. Fakat bilgilerin kaydedildiği dosya oluşmuyor ve bomboş bir sayfa geliyor.
<?php
$user = "";//username
$pass = "";//şifre
$popmundo = curl_init();
curl_setopt($popmundo,CURLOPT_URL,"www125.popmundo.com/common/Entry.asp");
curl_setopt($popmundo,CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($popmundo,CURLOPT_RETURNTRANSFER,1);
curl_setopt($popmundo,CURLOPT_FOLLOWLOCATION,1);
curl_setopt($popmundo,CURLOPT_COOKIEJAR,"coki.txt");
curl_setopt($popmundo,CURLOPT_COOKIEFILE,"coki.txt");
curl_setopt($popmundo,CURLOPT_POST,1);
$exe = curl_exec($popmundo);
preg_match('/<form method="post" name="GameLogin" action="(.*?)">/',$exe,$site);
$url = $site[1];
curl_setopt($popmundo,CURLOPT_URL,$url);
curl_setopt($popmundo,CURLOPT_POSTFIELDS,'loginname='.$user.'&password='.$pass.'&LanguageID=19&LanguageSwitch=&LanguageFolder=Turkish&action=logonConfirm&Submit=OK');
$exe = curl_exec($popmundo);
echo $exe;
?>acaba headerlarla mı ilgili bir sorun var? Sonuçta dosyaadi.php'yi çalıştırdığımda karakter sayfama gitmem gerekiyor da.