SOLUCIONADO.
Para la gente que tenga el mismo problema, para archivo muy grandes en vez de abrir el arhivo asi:
Código:
$url = "www.miweb.com"
$file = @ fopen($url,"r") or die ("No se pudo leer el destino");
$text = fread($file,16384);
hay que abrirlo
Código:
$url = "www.miweb.com"
$text = file_get_contents($url);
Gracias por todo pateketrueke