Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin Išjungti WordPress 2,5 Flash vaizdų / video / Pramogos nusiuntimo su Įskiepis

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. įrengta nauja žiniasklaidos (įskaitant vaizdą, vaizdo ir failas) Uploader kad pastatyti Adobe Flash technologija, kuri palaiko kelis failus įkelti į galeriją vienu metu ir siųsti pažangos rodiklis baras. Unfortunately, the media uploader has numerous Deja, žiniasklaida uploader turi daug bugs and problems klaidas ir problemas, , which basically make the Flash uploader not working, or not successfully uploading the files. , Kuri iš esmės daro Flash Uploader neveikia, arba ne sėkmingai įkelti failus.

There are a few symptoms for the broken Flash uploader error. Yra keletas požymių, kad skaldytų Flash siuntimo klaida. For example, blogger can adds the files to upload, but nothing happen or progress to upload the selected files. Pavyzdžiui, Bloggers gali prideda failų siuntimui į serverį, bet nieko atsitikti ar pažangos nusiųsti pasirinktus failus. 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. Kartais įkėlimo procesą valdo nuvykti į "Crunching", bet nustoti veikti po to, ar išeina su HTTP klaida, arba dar blogiau, užšaldyti ir katastrofos naršyklės neatsako. Other reported problems including the the add media buttons disappearing or not showing up. Kitų problemų, įskaitant papildomų žiniasklaidos mygtukai dingsta arba nerodo.

WordPress Support has WordPress Support turi listed išvardytų 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. keliais etapais būtų patikrinti ir nustatyti galimas problemas, kurias sukelia naudotojas negali įkelti nuotraukas, paveikslėlius, vaizdo įrašus, muziką ir kitas multimedijos rinkmenas į WordPress 2.5. If the Flash based media uploader does not work after whatever effort, workaround and solution been done, including some Jei Flash pagrįsta žiniasklaidos uploader neveikia po kokio pastangų, problemos ir sprendimo padaryta, įskaitant kai bug klaida fixes nustato , 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. , Pavyzdžiui, išjungti prieštaraujančių įskiepiai ir apeiti mod_security pabandyti išspręsti šią klaidą ir išduoda, yra įskiepiai priversti išjungti (ar vėliau vėl įjungti) 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). Norėdami įjungti Flash žiniasklaidos uploader bus išjungti per įskiepiai, filtras turi būti pridėta Flash Uploader (tik WordPress versija 2.5.x, kaip pakeisti yra įgyvendinti gairių versija 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). Norėdami tai padaryti, pakeiskite \ wp-admin \ apima \ media.php failą savo mėgstamiausiu teksto redaktoriumi tiesiogiai prisijungę prie serverio ar vietos (turi būti įkeltas ir perrašyti pakeičiama pirminio media.php failas). Change the following code at around line 765 to 770. Pakeisti šį kodą maždaug linija 765 iki 770.

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

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

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

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

Then, download the Tada atsisiųsti no-flash-uploader.php ne-flash-uploader.php , and upload the PHP file to \wp-content\plugins\ directory, and activate the plugin via WordPress administration page. Ir išsiųskite PHP failą \ wp-content \ plugins \ katalogą ir įjungti įskiepiai per WordPress administravimo puslapyje. 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. Po aktyvinimo išjungti Flash žiniasklaidos Uploader, nusiuntimo nebebus naudoti Flash technologiją, ir visas papildomas funkcijas, kad ateiti su juo taip pat buvo išjungta.

IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. SVARBU: You're reading mašina išverstą puslapį, kuri yra pateikiama "kaip yra" be garantijų. 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. Skirtingai nuo žmogaus vertimas, mašininio vertimo nesupranta gramatika, semantika, sintaksė, frazeologizm natūralios kalbos, todėl neretai netiksli ir žemos kokybės teksto, kuris yra klaidinančios ir nesuprantami. Thus, please refer to Taigi, prašome kreiptis į original English article originalas anglų straipsnis when in doubt. kai kyla abejonių.



15 Responses to “Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin” 15 Responses to "Išjungti" WordPress 2,5 Flash vaizdų / video / Pramogos nusiuntimo su Įskiepis "

  1. Michele Michele
    April 2nd, 2009 09:11 2 Bal 2009 09:11
    15 15

    grazie mille, questo post è stato provvidenziale! Grazie mille, questo post è stato provvidenziale!

  2. kookimebux kookimebux
    February 2nd, 2009 01:44 2 Vas 2009 01:44
    14 14

    Hello. Labas. And Bye. Ir Bye. :)

  3. Rene Hasprunar René Hasprunar
    December 13th, 2008 21:15 13 Gruodžio 2008 21:15
    13 13

    Here is the fix that worked for me. Čia yra nustatyti, kad dirbtų už mane.

    fryewiles fryewiles
    Member Valstybės
    Posted 12 hours ago # Išsiųsta 12 minutes ago #

    I had the same problem, and I was able to fix it by reuploading: Aš turėjau tą pačią problemą, ir aš turėjo galimybę ištaisyti reuploading:

    /wp-includes/js/swfupload/ / wp-includes/js/swfupload /

    And then clearing my browser cache. Tada išvalyti savo naršyklės talpyklą.

  4. Tien Do Xuan Tian Ar Xuan
    November 17th, 2008 20:08 Lapkritis 17, 2008 20:08
    12 12

    After should be: Po turėtų būti:
    $flash_action_url = get_option('siteurl') . $ flash_action_url = get_option ( "adresURL). “/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. / / Jei Mac ir mod_security, be Flash. : (
    if ( $flash && false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'mac') && apache_mod_loaded('mod_security') ) if ($ Flash & klaidingas! == strpos (strtolower ($ _SERVER [ 'HTTP_USER_AGENT']), 'Mac') & & apache_mod_loaded (mod_security '))
    $flash = false; $ Flash = false;

  5. Taras Di Terasą Di
    October 1st, 2008 23:25 Spalis 1, 2008 23:25
    11 11

    The above instructions do not work for me… the flash uploader still gets called. Pirmiau minėtos instrukcijos neveikia man ... Flash Uploader ten vis dar vadinami.

    I noticed, by debugging the code, that by the time the function that you edit in your instructions gets called, the browser is already displaying the 'loading upload form' bar (ie: the screen has turned black). Aš pastebėjau, pagal Derinimo kodą, kad iki to laiko funkcija, kad redaguoti savo nurodymus gauna vadinamas naršyklės jau rodyti "pakrovimo įkėlimo formą" bare (ty: ekranas tapo juodas).

    I've tried clearing the cache, and I'm using FF3.. Aš bandė išvalyti talpyklą ir aš naudoju FF3 .. any ideas on what could be going wrong? bet kokias idėjas apie tai, kas galėtų būti going wrong?

  6. sage šalavijas
    June 9th, 2008 21:28 Birželis 9th, 2008 21:28
    10 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. Jis buvo daug lengviau grįžti prie ankstesnės versijos wordpress, tačiau aš turiu kitą problemą. (I still can't Diegti vaizdo...) I design nuotraukos turi būti konkretus dydis dienoraštyje puslapyje, tačiau nustatyta, kad perdavimo kelia yra 'alt' dydžio į html, kad būtų pirmenybė pateikimo, vienijanti visų nuotraukų dydžio mažesnio formato. 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. Kai baigsite rašyti, aš turiu grįžti atgal per kodas ir pašalinti visas "alt's iš kodų, kad visi yra vertinami kaip aš, kai paskelbia.

  7. Mario Mario
    June 9th, 2008 18:51 Birželis 9th, 2008 18:51
    9 9

    Is it possible to totally remove the media buttons from the Write Post page? Ar galima visiškai pašalinti žiniasklaidos mygtukus iš Rašyti Rašyti puslapyje? I don't want users to use or even see these things. Nenoriu vartotojams ar net žiūrėti šiuos dalykus. I also want to remove the text editor buttons too! Aš taip pat noriu pašalinti redaktorius mygtukai too!

  8. Upload Problems with Wordpress 2.5 | Batang Yagit Įkelti Problemos su WordPress 2.5 | Batang Yagit
    May 10th, 2008 16:21 May 10th, 2008 16:21
    8 8

    [...] to a blog post I found, “…the media uploader has numerous bugs and problems, which basically make the [...] [...] Į dienoraštį Radau "... žiniasklaidos Uploader nemažai klaidų ir problemų, kurias iš esmės, kad [...]

  9. admin admin
    April 21st, 2008 15:11 Balandžio 21, 2008 15:11
    7 7

    Have you tried to re-upload wordpress files? Ar bandėte iš naujo įkelti wordpress failus? Probably some files have corrupted. Galbūt kai kurie failai yra sugadinti.

  10. sage šalavijas
    April 21st, 2008 14:04 Balandžio 21, 2008 14:04
    6 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 Aš tik folowed visus jūsų nurodymus, o aš vis dar gaunate šią klaidą: 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 Aš pakeitė Htaccess pasukti į mod dalykas ir nieko dirbo mano Mac (10.5) į safari ar FF
    Anything else I can do? Anything else I can do?
    thanks ačiū

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

    What error message you have? Kokios klaidos pranešimą Jūs turite?

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

    Thank you very much ! Labai tau ačiū!
    Now I can send files, but I still get the same error message I have with IE7. Dabar galite siųsti failus, o aš vis dar tos pačios klaidos pranešimą aš su IE7.
    However even with this error, the upload works. Tačiau net jei šios klaidos įkėlimo darbus.

  13. Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin (Excerpt) » My Digital Life Išjungti WordPress 2,5 Flash vaizdų / video / Pramogos nusiuntimo su Įskiepis (Excerpt) »Mano skaitmeninis gyvenimas
    April 17th, 2008 10:55 Balandis 17, 2008 10:55
    3 3

    [...] reading Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin at Tip and [...] [...] Redingas Išjungti WordPress 2,5 Flash vaizdų / video / Pramogos nusiuntimo su Įskiepis ne Patarimas ir [...]

  14. Tambayan.ph » Fix the media uploader when using IE7 on the latest WordPress 2.5 Tambayan.ph »Fix žiniasklaidos Uploader naudojant IE7 apie naujausius WordPress 2,5
    April 4th, 2008 12:03 4 Bal 2008 12:03
    2 2

    [...] an alternative you can just disable the media uploader and revert to the old one via a plugin. [...] Alternatyvą galite tiesiog išjungti žiniasklaidos Uploader ir grįžti prie senojo per įskiepiai. Or just use Firefox and wait for WordPress [...] Arba tiesiog naudoti Firefox ir laukti WordPress [...]

  15. Fix WordPress 2.5 Image or Media Flash Uploader Not Working Issue in IE7 » Tip and Trick Fix WordPress 2,5 vaizdų ar žiniasklaidos Flash Uploader neveikia numeris į IE7 »Patarimas ir Trick
    April 3rd, 2008 11:18 3 Bal 2008 11:18
    1 1

    [...] If using the Flash uploader is too much trouble, disable the Flash media uploader with this plugin. [...] Jei naudojate Flash uploader per daug problemų, išjungti Flash žiniasklaidos uploader su šio modulio. [...] [...]

Leave a Reply Palikti Atsakyti

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> Galite naudoti šias žymeles: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Subscribe to comments funkcija buvo išjungta. To receive notification of latest comments posted, subscribe to Norėdami gauti pranešimus apie naujausius komentarų, užsiprenumeruoti Tip and Trick Comments RSS feed Patarimas ir Trick Komentarų RSS or arba register to receive registruotis, norint gauti new comments in daily email digest. Nauji komentarai kasdien elektroniniu paštu.
Custom Search

Incoming Search Terms for the Article Pradedantys Paieška Sąlygos straipsnį

wordpress crunching WordPress crunching - -- wordpress disable flash uploader WordPress išjungti Flash Uploader - -- wordpress disable flash upload WordPress išjungti Flash įkelti - -- wordpress flash upload wordpress flash įkelti - -- wordpress flash uploader wordpress flash uploader - -- disable flash upload wordpress išjungti Flash įkelti wordpress - -- crunching wordpress crunching wordpress - -- flash upload wordpress Flash įkelti wordpress - -- wordpress image upload plugin WordPress paveikslėlių Kištukui - -- wordpress uploader WordPress uploader - -- Flash Uploader wordpress Flash Uploader wordpress - -- disable flash uploader wordpress išjungti Flash Uploader wordpress - -- uploader uploader - -- no-flash-uploader.php ne-flash-uploader.php - -- wordpress media uploader wordpress žiniasklaida uploader - -- disable flash uploader išjungti Flash Uploader - -- wordpress no flash uploader WordPress nėra Flash Uploader - -- wordpress Crunching… WordPress Crunching ... - -- wordpress crunching http error WordPress crunching HTTP klaida - -- wordpress no flash upload WordPress nėra Flash įkelti - -- wordpress image upload crunching WordPress vaizdus crunching - -- wordpress media upload plugin wordpress žiniasklaida nusiųsti Įskiepiai - -- wordpress 2.5 disable flash uploader WordPress 2,5 išjungti Flash Uploader - -- wordpress 2.5 flash WordPress 2,5 flash - -- disable wordpress flash upload išjungti wordpress flash įkelti - -- wordpress upload flash WordPress įkelti Flash - -- flash image uploader Flash vaizdą uploader - -- no flash uploader wordpress nėra Flash Uploader wordpress - -- media uploader žiniasklaidos uploader - -- wordpress flash image wordpress flash vaizdą - -- wordpress upload crunching WordPress įkelti crunching - -- disable wordpress flash uploader išjungti wordpress flash uploader - -- wordpress 2.5 crunching WordPress 2,5 crunching - -- disable flash upload išjungti Flash įkelti - -- wordpress image crunching WordPress vaizdą crunching - -- wordpress upload plugin WordPress nusiųsti Įskiepiai - -- wordpress 2.5 disable flash upload WordPress 2,5 išjungti Flash įkelti - -- wordpress upload media WordPress įkelti žiniasklaidos - -- No Flash Uploader No Flash Uploader - -- wordpress 2.5 add video WordPress 2,5 pridėti video - -- wordpress upload image crunching WordPress paveikslėlius crunching - -- wordpress media upload broken wordpress žiniasklaida įkelti x - -- no flash upload plugin NO FLASH nusiųsti Įskiepiai - -- wordpress disable flash WordPress išjungti Flash - -- wordpress enable flash uploader WordPress įjungti Flash Uploader - -- wordpress and flash wordpress flash - -- wordpress disable flash upload plugin WordPress išjungti Flash nusiųsti Įskiepiai - -- wordpress flash uploader http error wordpress flash perdavimo HTTP klaida - -- video uploader vaizdo - -- wordpress image uploader plugin WordPress vaizdą uploader įskiepiai - --