Author Topic: Möchte Dateiformat rar hinzufügen  (Read 3680 times)

0 Members and 1 Guest are viewing this topic.

Offline michi-w.

  • Hero Member
  • *****
  • Posts: 505
    • View Profile
Möchte Dateiformat rar hinzufügen
« on: August 25, 2006, 03:03:33 AM »
Hallo,

nun versuch ich schon 3 Stunden das rar Format ins Script einzubauen.
rar ist das Dateiformat von Winrar, was im Prinzip wie Winzip ist.

Zunächst habe ich in der upload_definitions.php
das eingefügt
Code: [Select]
$mime_type_match['rar'] = array("application/x-rar-compressed");und im media Verzeichnis eine Datei rar erstellt (CHMOD 666), mit diesem Inhalt
Code: [Select]
<!-- Template file for RAR Files -->
{media_icon}<br />

Das Script sagt mir ständig, dass das Dateiformat nicht richtig ist:
Quote
Fehler beim Upload der Bild-Datei:
test.rar: Die Datei hat ein ungültiges Format (rar, application/octet-stream)
Erlaubte Formate
jpg,png,doc,gif,txt,pdf,zip,rar

Was ist falsch?
Zip geht, allerdings nur mit den Internet Explorer, habe herausgefunden, dass das wohl ein Browser Bug ist.
http://renephoenix.de/index.php?bid=509

Gruß
michi-w.
P.S. Script Version 1.7, wegen den Mods. :oops:
« Last Edit: August 25, 2006, 03:22:36 AM by michi-w. »

Offline mawenzi

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: Möchte Dateiformat rar hinzufügen
« Reply #1 on: August 25, 2006, 11:29:47 AM »
versuche folgendes in upload_definitions.php
Code: [Select]
$mime_type_match['rar'] = array("application/x-rar-compressed", "application/octet-stream");

Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline michi-w.

  • Hero Member
  • *****
  • Posts: 505
    • View Profile
Re: Möchte Dateiformat rar hinzufügen
« Reply #2 on: August 25, 2006, 03:46:22 PM »
Vielen Dank, so geht`s! :D