|
Posted by Gufo Rosso on 09/17/05 19:01
"Oli Filth" <catch@olifilth.co.uk> ha scritto nel messaggio
news:1126793940.815236.259670@g47g2000cwa.googlegroups.com...
> kachorro wrote:
> > Hi all!
> >
> > Ive been working in jpg downloader for my site.
> >
> > The user chooses a pic and if he is a valid user, he is able to download
the
> > pic.
> >
> > My code is like that..
> > <?
> > ob_start()
> > ?>
> > if (picChoose()){
> > if (validUser()){
> > header (Location: downloader.php?img=1.jpg)
> > }
> > }else{
> > echo from to select the pic
> > }
> > <?
> > ob_flush()
> > ?>
> >
>
> With the setup above, what's to stop the use just browsing straight to
> downloader.php?img=... ?
>
>
> > Calling the code in upper way the img is downloaded and downloaded ok,
> > but, if i write the code like below
> > if (validUser()){
> > $fd=null, $buffer=null;
> > if ($fd = fopen ($ruta, "r")) {
> > $fsize = filesize($ruta);
> > $infoRuta = pathinfo($ruta);
> > $ext =
strtolower($infoRuta["extension"]);
> >
> > header("Content-type:
application/octet-stream");
> > header("Content-Disposition: filename=\"".
> > $infoRuta["basename"]."\"");
> >
> > header("Content-length: $fsize");
> > header("Cache-control: private");
> > while(!feof($fd)) {
> > $buffer = fread($fd, 2048);
> > }
> > }
> > fclose ($fd);
> > exit;
> > }
> >
> > it does not work properly
>
> This code shouldn't do anything useful at all? All it will do is
> overwrite $buffer with every 2KB of the image file, and output nothing!
> (other than the headers)
>
test your code in mozilla firefox (FOUND!!!)
ie fuck!!!
>
> --
> Oli
>
[Back to original message]
|