UploadFX - Multiple upload
Es hat also offensichtlich irgendetwas mit dem Server zu tun.Diese Vorgehensweise kann unter Umständen dazu führen, dass der zweite Request mit einem negativen Response (HTTP-Error 403) beantwortet wird und der Upload scheitert. Das Problem trat bei mir auf, als ich versuchte einen Flash-Upload auf einem Apache-Server, welcher ein speziellen "Security Mod" benutzte um PHP-Exploits abzuwehren, einzurichten.
Das könnte auch dein Problem sein. Leider kann ich dir nicht sagen, wie du es lösen kannst. Darüber wird auf der Seite auch nix erzählt. Ich geh aber davon aus, dass wenn du nicht Administrator des Servers bist, du das Problem nicht lösen können wirst.

#GeorgeWBush { position:absolute; bottom:-6ft; }
evt. lösung
hallo metti,
laut meinem provider sollte ein klammer fehler ?
seine antwort auf mein problem:
grüße
laut meinem provider sollte ein klammer fehler ?
seine antwort auf mein problem:
nützt dir diese info um mir zu helfen ?es fehlt eine klammer im post-datenstrom der zum script gesendet wird:
----------------------
[Wed Feb 14 07:06:08 2007] [error] [client 88.117.177.246] mod_security: Error processing request body: Multipart: final boundary missing [hostname "www.jeep-plangger.at"] [uri "/cms/include/inc_module/mod_uploadfx/inc_act/upload.php?PHPSESSID=56759c0934f8fb248f1440e0ebbcb946&filename=undefined"]
grüße
Hm. Sehr eigenartig. Ich hab aber leider keinen Einfluss auf den Postbody. Die Uploadfunktion von Flash ist leider nicht weiter beeinflussbar (Doch nich alles Gold, was glänzt
)
Ich hab aber vor UploadFX zusätzlich ein Javauploader mitzugeben, falls das mit Flash nicht funzt.

Ich hab aber vor UploadFX zusätzlich ein Javauploader mitzugeben, falls das mit Flash nicht funzt.
#GeorgeWBush { position:absolute; bottom:-6ft; }
Re: evt. lösung
markus s wrote:[Wed Feb 14 07:06:08 2007] [error] [client 88.117.177.246] mod_security: Error processing request body: Multipart: final boundary missing [hostname "www.jeep-plangger.at"] [uri "/cms/include/inc_module/mod_uploadfx/inc_act/upload.php?PHPSESSID=56759c0934f8fb248f1440e0ebbcb946&filename=undefined"]
Thx Dexxus. But i don't think, that this is the cause of the problem, because the GET-var "filename" is not used in the upload script.
Anyway i fixed this and you can now find the new uploadfx.swf at my download page. Just replace the old one with this.
Anyway i fixed this and you can now find the new uploadfx.swf at my download page. Just replace the old one with this.
#GeorgeWBush { position:absolute; bottom:-6ft; }
Das neue Package ist oben:
http://www.hs-merseburg.de/wecker/index.php?download
Ich hoffe, dass es jetzt für dich funktioniert.
-----------------------------------------------------
The new package is up:
http://www.hs-merseburg.de/wecker/index.php?download
http://www.hs-merseburg.de/wecker/index.php?download
Ich hoffe, dass es jetzt für dich funktioniert.
-----------------------------------------------------
The new package is up:
http://www.hs-merseburg.de/wecker/index.php?download
#GeorgeWBush { position:absolute; bottom:-6ft; }
Re: evt. lösung
Ich hab mich mal ein bissl informiert:markus s wrote:es fehlt eine klammer im post-datenstrom der zum script gesendet wird:
----------------------
[Wed Feb 14 07:06:08 2007] [error] [client 88.117.177.246] mod_security: Error processing request body: Multipart: final boundary missing [hostname "www.jeep-plangger.at"] [uri "/cms/include/inc_module/mod_uploadfx/inc_act/upload.php?PHPSESSID=56759c0934f8fb248f1440e0ebbcb946&filename=undefined"]
Verantwortlich für die Schlappe von UploadFX in deinem Fall sind zwei Sachen: Erstmal, dass die FileReference Klasse des Adobe Flash Players offensichtlich einen Bug hat und zweitens, dass mod_security (Eine Serverfirewall) diesen Bug nicht tolleriert. Sollte das Problem auch nach der Installation der neuen Version bestehen (und davon gehe ich zumindest bei dem Flash Upload aus) probier mal folgendes:
Lege im document root eine .htaccess an und schreib dort folgendes rein:
Code: Select all
<IfModule mod_security.c>
# Turn off mod_security filtering.
SecFilterEngine Off
# The below probably isn't needed, but better safe than sorry.
SecFilterScanPOST Off
</IfModule>
Hoffe das hilft.
Gruß metti
#GeorgeWBush { position:absolute; bottom:-6ft; }
Okay. Danke für den Hinweis.
Ich lad gleich noch das gefixte Paket hoch.
Brauchst bloß drei Änderungen machen:
uploadfx.js:
In der index.tmpl.php
(Da kannst du dir das Update sparen)
Ich lad gleich noch das gefixte Paket hoch.
Brauchst bloß drei Änderungen machen:
uploadfx.js:
Code: Select all
//Nach Zeile 137 folgendes einfügen:
display("upload_object", "none");
//Und nach Zeile 165 folgendes einfügen:
display("upload_object", "inline");
Code: Select all
//In Zeile 114 nach
onclick="display('editInfo', 'none');
//und vor edit = null;"> folgendes einfügen:
display('upload_object', 'inline');
#GeorgeWBush { position:absolute; bottom:-6ft; }