fopen değil file_get_contents e izin vermiyordur.
$file = file_get_contents($sayfa_adresi);
yerine


$ch= curl_init();
curl_setopt($ch, CURLOPT_URL, $sayfa_adresi);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$file =curl_exec($ch);
curl_close($ch);


kodunu koyarsanız sorun çözülür.