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.
Related Articles Verwandte Artikel
- Fix WordPress 2.5 Image or Media Flash Uploader Not Working Issue in IE7 Fix WordPress 2,5 Bild-oder Flash-Media-Uploader nicht funktioniert Ausgabe in IE7
- Media Buttons Disabler Plugin to Remove “Add Media” Icons in WordPress 2.5 Media-Buttons Disabler Plugin zu entfernen "Add Media" Icons in WordPress 2,5
- WordPress 2.5.1 Released for Download WordPress 2.5.1 released zum Download
- PHP Fatal Error on Call to Add_Query_Var in Taxonomy.php After Upgrading to WordPress 2.5 RC2 PHP Fatal Error in Call to Add_Query_Var in Taxonomy.php Nach dem Upgrade auf WordPress 2,5 RC2
- Call To Undefined Function: ctype_digit() in WordPress 2.5 Anruf zu unbestimmter Funktion: ctype_digit () in WordPress 2,5
- WordPress 2.5 RC2 Released for Download WordPress 2,5 RC2 zum Download freigegeben
- Call to Undefined Function: wp_constrain_dimensions() When Uploading Images or image_downsize() in Gallery/Media Library in WordPress 2.5 Rufen Sie an unbestimmter Funktion: wp_constrain_dimensions () Beim Hochladen Bilder oder image_downsize () in der Galerie / Mediathek in WordPress 2,5
- Call to Undefined Function get_currentuserinfo() Error in WordPress Anruf zu unbestimmter Funktion get_currentuserinfo () Fehler in WordPress
- How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin Wie SEO optimieren WordPress 2,5 Blog Web-Seite ohne Titel optimale Plugin-Titel
- Upload Photos to Flickr with Friendly Flickr Applications Hochladen von Fotos auf Flickr mit freundlicher Flickr-Anwendungen
April 3rd, 2008 11:18 3. April 2008 11:18
[...] 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. [...]
April 4th, 2008 12:03 4. April 2008 12:03
[...] 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 [...]
April 17th, 2008 10:55 17. April 2008 10:55
[...] 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 [...]
April 20th, 2008 00:49 20. April 2008 00:49
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.
April 20th, 2008 00:52 20. April 2008 00:52
What error message you have? Welche Fehlermeldung haben Sie?
April 21st, 2008 14:04 21. April 2008 14:04
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
April 21st, 2008 15:11 21. April 2008 15:11
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.
May 10th, 2008 16:21 10. Mai 2008 16:21
[...] 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 [...]
June 9th, 2008 18:51 9. Juni 2008 18:51
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!
June 9th, 2008 21:28 9. Juni 2008 21:28
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.