Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin Terminierung von WordPress 2,5 Flash-Bild / Video / Media Uploader mit Plugin

WordPress 2.5 WordPress 2,5 features a new media (including image, video and file) uploader that built on Adobe Flash technology which supports multiple files uploading to the gallery at one time and upload progress indicator bar. verfügt über eine neue Medien (einschließlich Bild-, Video-und Datei) Uploader, dass die auf Adobe-Flash-Technologie unterstützt das Hochladen von mehreren Dateien zu der Galerie auf einmal hochladen und Fortschritt Balken angegeben. Unfortunately, the media uploader has numerous Leider sind die Medien verfügt über zahlreiche Uploader bugs and problems Bugs und Probleme , which basically make the Flash uploader not working, or not successfully uploading the files. , Die im Grunde machen die Flash-Uploader nicht funktioniert, oder nicht erfolgreich Hochladen der Dateien.

There are a few symptoms for the broken Flash uploader error. Es gibt ein paar Symptome für den gebrochenen Flash Uploader Fehler. For example, blogger can adds the files to upload, but nothing happen or progress to upload the selected files. Zum Beispiel, können Blogger fügt die Dateien hochgeladen werden, aber nichts passiert, oder Fortschritte zum Hochladen der ausgewählten Dateien. Sometimes the upload process manages to get to “Crunching” but stop working after, or comes out with HTTP error, or even worse, freeze and crash the browser to not responding. Manchmal ist der Upload-Prozess steuert, um "Crunching" aber nicht mehr zu funktionieren nach, oder kommt mit HTTP-Fehler, oder noch schlimmer, Einfrieren und Absturz des Browsers nicht zu reagieren. Other reported problems including the the add media buttons disappearing or not showing up. Andere Probleme, einschließlich der Medien das Add-Buttons verschwinden oder nicht angezeigt.

WordPress Support has WordPress Support hat listed aufgelisteten several steps to check and fix the possible problems that cause user cannot upload photos, images, videos, music and other media files in WordPress 2.5. mehreren Schritten zu überprüfen und reparieren die möglichen Probleme, die dazu führen, dass Benutzer kann nicht hochgeladen Fotos, Bilder, Videos, Musik und andere Medien-Dateien auf WordPress 2,5. If the Flash based media uploader does not work after whatever effort, workaround and solution been done, including some Wenn der Flash-basierten Medien-Uploader nicht funktioniert, was nach Anstrengung, und Workaround-Lösung getan worden, darunter auch einige bug Bug fixes Fixes , such as disable conflicting plugin and bypass mod_security to try to solve the error and issue, there is a plugin to force disable (or later re-enable) the Flash uploader. , Wie widersprüchliche Plugin deaktivieren und Bypass-mod_security zu lösen versuchen, die Fehler und die Ausstellung gibt es ein Plugin zu zwingen deaktivieren (oder später wieder aktivieren) der Flash-Uploader.

To enable the Flash media uploader to be disabled via plugin, a filter has to be added to Flash uploader (only on WordPress version 2.5.x, as the change is set to implement in milestone version 2.6). Damit die Flash-Medien Uploader deaktiviert zu sein über Plugin, ein Filter muss hinzugefügt werden Flash-Uploader (nur auf WordPress Version 2.5.x, wie die Änderung wird die Umsetzung Meilenstein in Version 2.6). To do so, edit the \wp-admin\includes\media.php file using your favorite text editor directly by logging in to server or locally (has to be uploaded and overwrite replaced the original media.php file). Dazu editieren Sie die \ wp-admin \ includes \ media.php Datei mit Ihrem Lieblings-Text-Editor direkt, indem Sie sich in Server oder lokal (muß hochgeladen und überschreibt die ursprüngliche Datei media.php). Change the following code at around line 765 to 770. Ändern Sie den folgenden Code in etwa Zeile 765 bis 770.

Before: Vorher:
$flash_action_url = get_option('siteurl') . $ flash_action_url = get_option ( 'siteurl'). "/wp-admin/async-upload.php"; "/ wp-admin/async-upload.php";

// If Mac and mod_security, no Flash. / / Wenn Mac und mod_security, kein Flash. :( : (
$flash = true; $ flash = true;
if ( false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), ‘mac’) && apache_mod_loaded(’mod_security’) ) if (false! == strpos (strtolower ($ _SERVER [ 'HTTP_USER_AGENT']), 'mac') & & apache_mod_loaded ( 'mod_security'))
$flash = false; $ flash = false;

After: Nachher:
$flash_action_url = get_option('siteurl') . $ flash_action_url = get_option ( 'siteurl'). "/wp-admin/async-upload.php"; "/ wp-admin/async-upload.php";

$flash = apply_filters('flash_uploader', true); Flash = $ apply_filters ( 'flash_uploader', true);
// If Mac and mod_security, no Flash. / / Wenn Mac und mod_security, kein Flash. :( : (
$flash = true; $ flash = true;
if ( $flash && false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), ‘mac’) && apache_mod_loaded(’mod_security’) ) if ($ Flash & & false! == strpos (strtolower ($ _SERVER [ 'HTTP_USER_AGENT']), 'mac') & & apache_mod_loaded ( 'mod_security'))
$flash = false; $ flash = false;

Then, download the Dann laden Sie die no-flash-uploader.php no-Flash-uploader.php , and upload the PHP file to \wp-content\plugins\ directory, and activate the plugin via WordPress administration page. , Und laden Sie die PHP-Datei zu \ wp-content \ Plugins \ Verzeichnis, und aktivieren Sie das Plugin über WordPress Verwaltungs-Seite. After activating to disable the Flash media uploader, the uploader will no longer make use of Flash technology, and all advanced features that come with it also been disabled. Nach der Aktivierung zu deaktivieren Sie die Flash-Medien-Uploader, den Uploader nicht mehr nutzen Flash-Technologie, und alle erweiterten Funktionen, die kommen damit auch deaktiviert.

IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. WICHTIG: Sie lesen eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Unlike human translation, machine translation does not understand the grammar, semantics, syntax, idioms of natural language, thus often produce inaccurate and low quality text which is misleading and incomprehensible. Im Gegensatz zu menschlichen Übersetzung, maschinelle Übersetzung nicht verstehen, die Grammatik, Semantik, Syntax, Idiome der natürlichen Sprache, so oft ungenau und niedrige Qualität der Text ist irreführend und unverständlich. Thus, please refer to So entnehmen Sie bitte original English article Original Englisch Artikel when in doubt. Wenn Sie Zweifel haben.



10 Responses to “Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin” 10 Responses to "Disable WordPress 2,5 Flash-Bild / Video / Media Uploader mit Plugin"

  1. Fix WordPress 2.5 Image or Media Flash Uploader Not Working Issue in IE7 » Tip and Trick Fix WordPress 2,5 Bild-oder Flash-Media-Uploader nicht funktioniert Ausgabe in IE7 »Tipp und Trick
    April 3rd, 2008 11:18 3. April 2008 11:18
    1

    [...] If using the Flash uploader is too much trouble, disable the Flash media uploader with this plugin. [...] Bei Verwendung des Flash-Uploader ist zu viel Mühe haben, deaktivieren Sie die Flash-Medien Uploader Mit diesem Plugin. [...]

  2. Tambayan.ph » Fix the media uploader when using IE7 on the latest WordPress 2.5 Tambayan.ph »Fix-Uploader die Medien bei der Verwendung von IE7 auf dem neuesten WordPress 2,5
    April 4th, 2008 12:03 4. April 2008 12:03
    2

    [...] an alternative you can just disable the media uploader and revert to the old one via a plugin. [...] Alternativ können Sie einfach deaktivieren Sie die Medien-Uploader und wieder auf das alte über ein Plugin. Or just use Firefox and wait for WordPress [...] Oder benutzen Sie einfach Firefox und warten für WordPress [...]

  3. Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin (Excerpt) » My Digital Life Terminierung von WordPress 2,5 Flash-Bild / Video / Media Uploader mit Plugin (Auszug) »Mein Digital Life
    April 17th, 2008 10:55 17. April 2008 10:55
    3

    [...] reading Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin at Tip and [...] [...]-Disable-Lesung WordPress 2,5 Flash-Bild / Video / Media Uploader Plugin mit an der Spitze und [...]

  4. warriorfr
    April 20th, 2008 00:49 20. April 2008 00:49
    4

    Thank you very much ! Vielen Dank!
    Now I can send files, but I still get the same error message I have with IE7. Nun kann ich Dateien senden, aber ich immer noch die gleiche Fehlermeldung Ich habe mit IE7.
    However even with this error, the upload works. Doch auch mit diesem Fehler, der Upload funktioniert.

  5. admin
    April 20th, 2008 00:52 20. April 2008 00:52
    5

    What error message you have? Welche Fehlermeldung haben Sie?

  6. sage Sage
    April 21st, 2008 14:04 21. April 2008 14:04
    6

    I have just folowed all of your instructions and I am still getting this error: Fatal error: Call to undefined function wp_constrain_dimensions() in /home2/newyorka/public_html/wp-admin/includes/image.php on line 173 Ich habe gerade folowed alle Ihre Anweisungen, und ich bin noch immer diesen Fehler: Fatal error: Call to undefined function wp_constrain_dimensions () in / home2/newyorka/public_html/wp-admin/includes/image.php on line 173

    I have altered the htaccess to turn of the mod thing and nothing has worked on my Mac (10.5) in safari or FF Ich habe die htaccess geändert, um der Sache mod und nichts gearbeitet hat auf meinem Mac (10.5) in Safari oder FF
    Anything else I can do? Alles andere kann ich tun?
    thanks Danke

  7. admin
    April 21st, 2008 15:11 21. April 2008 15:11
    7

    Have you tried to re-upload wordpress files? Haben Sie versucht, erneut hochladen wordpress Dateien? Probably some files have corrupted. Wahrscheinlich haben einige Dateien beschädigt.

  8. Upload Problems with Wordpress 2.5 | Batang Yagit Hochladen Probleme mit Wordpress 2,5 | Batang Yagit
    May 10th, 2008 16:21 10. Mai 2008 16:21
    8

    [...] to a blog post I found, “…the media uploader has numerous bugs and problems, which basically make the [...] [...] Zu einem Blog-Post ich gefunden, "… die Medien Uploader verfügt über zahlreiche Bugs und Probleme, die im Grunde machen die [...]

  9. Mario
    June 9th, 2008 18:51 9. Juni 2008 18:51
    9

    Is it possible to totally remove the media buttons from the Write Post page? Ist es möglich, völlig entfernen Sie die Medien-Tasten aus der Post-Seite schreiben? I don’t want users to use or even see these things. Ich möchte nicht, dass sie zur Nutzung oder sogar sehen diese Dinge. I also want to remove the text editor buttons too! Ich möchte auch entfernen Sie den Texteditor Tasten!

  10. sage Sage
    June 9th, 2008 21:28 9. Juni 2008 21:28
    10

    It was much easier to revert to the previous version of wordpress, however, I have another problem.( I still cannot imbed video. . .) I design the photos to be a specific size on the blog page but have found that the uploader puts an ‘alt’ size into the html that takes precedence in the presentation, unifying all the photo sizes to a smaller format. Es war viel einfacher, um wieder die alte Version von WordPress, aber ich habe ein anderes Problem. (Ich kann immer noch nicht imbed Video...) Ich Gestaltung der Bilder zu einer bestimmten Größe in der Blog-Seite, haben aber festgestellt, dass der Uploader macht ein 'Alt' Größe in den HTML-das hat Vorrang bei der Präsentation, die Vereinigung aller Größen das Foto zu einem kleineren Format. When I finish writing, I have to go back through the code and remove all the ‘alt’s from the code so that all is seen as I planned when I publish. Als ich abgeschlossen haben, habe ich zurück durch den Code und entfernen Sie alle "alt's aus dem Code, so dass alle gesehen, wie ich geplant, als ich veröffentlichen.

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Sie können diese Tags: <a href= title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Abonnieren ohne zu kommentieren


Incoming Search Terms for the Article Eingehender Suchbegriffe für den Artikel

wordpress crunching WordPress crunching - -- wordpress flash uploader WordPress Flash Uploader - -- wordpress disable flash upload WordPress deaktivieren-Flash-Upload - -- wordpress Crunching… WordPress Crunching… - -- uploader Uploader - -- wordpress 2.5 flash WordPress 2,5-Flash - -- crunching wordpress crunching WordPress - -- wordpress 2.5 crunching WordPress 2,5 crunching - -- wordpress flash upload WordPress-Flash-Upload - -- no-flash-uploader.php no-Flash-uploader.php - -- no flash uploader wordpress No Flash Uploader WordPress - -- wordpress 2.5 add video WordPress 2,5 Video hinzufügen - -- wordpress crunching http error WordPress crunching HTTP-Fehler - -- wordpress 2.5 crunching error WordPress 2,5 crunching Fehler - -- no flash upload plugin No Flash Plugin-Upload - -- disable wordpress 2.5 image uploader deaktivieren WordPress 2,5 Image Uploader - -- wordpress disable flash uploader WordPress deaktivieren Flash Uploader - -- wordpress upload crunching WordPress-Upload-crunching - -- wordpress upload media WordPress-Upload-Medien - -- No Flash Uploader No Flash Uploader - -- wordpress image upload http error WordPress zum Hochladen von Bildern HTTP-Fehler - -- disable flash uploader deaktivieren Flash Uploader - -- wordpress image crunching WordPress Bild crunching - -- wordpress 2.5 image crunching problems WordPress 2,5 Bild crunching Probleme - -- wordpress no flash uploader WordPress kein Flash-Uploader - -- wordpress image upload crunching WordPress zum Hochladen von Bildern crunching - -- wordpress 2.5 image upload crunching WordPress 2,5 Hochladen von Bildern crunching - -- wordpress 2.5 upload crunching WordPress 2,5-Upload-crunching - -- wordpress 2.5 disable flash uploader WordPress 2,5 deaktivieren Flash Uploader - -- wordpress add media http error WordPress Hinzufügen Mediathek HTTP-Fehler - -- video wordpress 2.5 Video WordPress 2,5 - -- Crunching… wordpress Crunching… WordPress - -- wordpress media upload ie7 WordPress Medien-Upload IE7 - -- crunching error wordpress crunching Fehler WordPress - -- wordpress crunching error WordPress crunching Fehler - -- wordpress upload image crunching WordPress Bild hochladen crunching - -- wordpress flash image WordPress-Flash Bild - -- Flash Uploader wordpress Flash-Uploader WordPress - -- wordpress no-flash-uploader wordpress no-Flash-Uploader - -- wordpress 2.5 crunching image upload WordPress 2,5 crunching zum Hochladen von Bildern - -- HTTP error wordpress upload HTTP-Fehler WordPress-Upload - -- wordpress upload crunching error WordPress-Upload-crunching Fehler - -- "add media"+wordpress+error "Medien hinzufügen" + + Error wordpress - -- wordpress media uploads broken WordPress Medien-Uploads gebrochen - -- wordpress disable flash upload plugin WordPress deaktivieren-Flash-Upload-Plugin - -- wordpress disable uploads for author WordPress-Uploads zu deaktivieren Autor - -- wordpress 2.5 disable flash upload WordPress 2,5 deaktivieren-Flash-Upload - -- wordpress 2.5 add media +crunching wordpress 2,5 Hinzufügen Mediathek + crunching - -- disable flash image wordpress 2.5 Flash deaktivieren Bild WordPress 2,5 - -- problems video wordpress 2.5 freezes Probleme Video WordPress 2,5 friert - --