What's the script look like now?
Normally it'd look something like this:
<?php
header('Content-type: application/download');
header('Content-disposition: attachment; filename=backup.tar.gz');
$fp = popen('tar -czO /home/divine/Rom24', 'rb');
while ($chunk = fread($fp, 8192))
echo $chunk;
?>
On 5/24/05, Valnir <[EMAIL PROTECTED]> wrote:
> Ok.. I know this is a ROM based board, but I also know you guys all have a
> lot of knowledge on a lot of things. At any rate, here's my questions..
>
> Using PHP for our dynamic website. One of the features that the Implementers
> have is to login and download a copy of the game or the website as a TGZ for
> offline backup.
>
> The feature works perfect in FireFox, but it just says 'piss-off' when you
> try it in IE. The weird part... it used to work.
>
> I've tried several ideas, all to no avail. Any additional direction would be
> great. And if you don't wanna clutter the ROM board, just email me direct.
> Thanks!
>
> - Valnir
>
>
> --
> ROM mailing list
> [email protected]
> Unsubscribe here ->>> http://www.rom.org/cgi-bin/mailman/listinfo/rom
>