¿Puedo usar URL externas en readfile()?PHP readfile() de URL externa
header('Content-type: application/pdf');
header('Content-Transfer-Encoding: binary');
header('Content-Disposition: inline; filename="'.$file.'" ');
//header('Content-Length: ' . filesize("http:...z/pub/".$file.'.pdf'));
@readfile("http://...z/pub/".$file.'.pdf');
Pruébelo y/o [RTM] (http://php.net/readfile): "Se puede utilizar una URL como nombre de archivo con esta función si se han habilitado los contenedores fopen". ;-) – netcoder
¿Debo hacer 'exec ("wget $ url -O $ nombre de archivo")'? – user583311