Thomas: application/zip ist Mozilla nicht bekannt ?

Hallo,

mein Downloadscript enthält folgenden header:

header("Content-Type: application/zip");

Wenn ich einen Download starte erhalte ich vom Mozilla einen Dialog in dem steht
The file "lalala.zip" is of type "application/zip", and Mozilla does not know how to handle this file-type.This file is located at:
http....kompletter Pfad, also erledigt sich der Sinn des Downloadscripts, nämlich den Pfad zu "verstecken".

Was solln das ?

mfg

Thomas

  1. Hallo Thomas,

    mein Downloadscript enthält folgenden header:

    header("Content-Type: application/zip");

    Wenn ich einen Download starte erhalte ich vom Mozilla einen Dialog in dem steht
    The file "lalala.zip" is of type "application/zip", and Mozilla does not know how to handle this file-type.

    Mozilla kennt im Normalfall nur text/html, text/xml, application/xml, application/xhtml+xml, text/plain, image/png, image/jpeg, video/x-mng und image/gif, application/octet-stream und einige andere für z.B. ICO und BMP Dateien. Wenn Plugins installiert sind, dann kennt Mozilla auch mehr. Bei allen anderen Dateitypen wird defaultmäßig gefragt, was Du mit den Dateien machen willst.

    also erledigt sich der Sinn des Downloadscripts, nämlich den Pfad zu "verstecken".

    Inwiefern willst Du einen Pfad verstecken? Verstehe ich nicht ganz.

    Was solln das ?

    Ganz einfach: Mozilla fragt den Besucher bei jedem Dateityp, den er nicht kennt, was der Benutzer mit der Datei anstellen will. In Bearbeiten -> Einstellungen -> Navigator -> Hilfsanwendungen kann man die durchgeführten Aktionen für jeden Dateityp einstellen. (resp. Edit -> Preferences -> Navigator -> Helper application (oder so ähnlich))

    Viele Grüße,
    Christian

  2. header("Content-Type: application/zip");
    Wenn ich einen Download starte erhalte ich vom Mozilla einen Dialog in dem steht

    nimm doch sowas:
    header("Content-Type: x-type/subtype");
    header("Content-Disposition: attachment; filename="".$filename.""");

    Das klappt bei mir mit allen Browsern, auch mit Phoenix

    Dennis