| I'm trying to grab a site containing links to dynamically
generated files (pdf files, msword documents, images, ...).
These files are accessed with links like:
<http://xxx.xxx.xxx/fetchblob.php?bb=1&id=12345>
and returned via headers like this:
HTTP/1.1 200 OK
[... snip ...]
Content-length: 4102
Content-disposition: attachment; filename="cataloghi.gif"
Last-Modified: Mon, 07 Apr 2003 13:28:52 GMT
Connection: close
Content-Type: image/gif
They are saved as html files (thus images are not
displayed, files are not loaded by the proper tool, etc.)
and not with the name suggested by "filename".
The same happens when the disposition header looks like:
Content-disposition: inline; filename="cataloghi.gif"
I wonder if:
- I'm missing some configuration option
- this is a feature (i.e.: there's a particular reason why
files are not saved with the specified name)
- this is a bug
P.S.
When the requested url looks like:
<http://xxx.xxx.xxx/fetchblob.php/?bb=1&id=12345>
(there's a slash betwheen php and the question mark) they
are saved with the proper name under a "fetchblob.php"
directory.
| |