Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin تعطيل WordPress 2،5 فلاش صورة / فيديو / وسائل الإعلام مع البرنامج المساعد الرافع

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. ميزات جديدة وسائل الاعلام (بما فيها الصور والفيديو وملف (الرافع ان يبنى على ادوبي فلاش التكنولوجيا التي تدعم تحميل ملفات متعددة الى صالة العرض في وقت واحد ورفع مؤشر التقدم بار. Unfortunately, the media uploader has numerous وللأسف ، فان العديد من وسائل الاعلام الرافع bugs and problems البق والمشاكل , which basically make the Flash uploader not working, or not successfully uploading the files. الذي جعل اساسا فلاش الرافع لا تعمل ، او عدم النجاح في تحميل الملفات.

There are a few symptoms for the broken Flash uploader error. وهناك بعض الاعراض لكسر فلاش الرافع خطأ. For example, blogger can adds the files to upload, but nothing happen or progress to upload the selected files. فعلى سبيل المثال ، يمكن ان يضيف المدون لتحميل الملفات ، ولكن لا شيء يحدث او التقدم لتحميل الملفات المحددة. 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. في بعض الاحيان تدير عملية التحميل للوصول الى "الطحن" ولكن بعد ان توقف عن العمل ، او يخرج مع بروتوكول انتقال النص المتشعب خطأ ، او حتى أسوأ ، وتجميد تحطم المتصفح لعدم الرد. Other reported problems including the the add media buttons disappearing or not showing up. وافادت غيرها من المشاكل بما فيها اضافة الازرار وسائل الاعلام لا يظهر او يختفي.

WordPress Support has WordPress الدعم listed قائمة 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. عدة خطوات لفحص وتحديد المشاكل المحتملة التي تسبب المستخدم لا يمكن تحميل الصور ، الصور ، والفيديو والموسيقى وغيرها من وسائل الاعلام في ملفات WordPress 2،5. If the Flash based media uploader does not work after whatever effort, workaround and solution been done, including some واذا كان فلاش وسائط الاعلام الموجودة في الرافع لا يعمل بعد مهما كان الجهد ، والحل كان حل به ، بما في ذلك بعض bug البقه 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. ، مثل تعطيل البرنامج المساعد والمتضاربه الالتفافيه mod_security لمحاولة حل المساله والخطأ ، وثمة قوة تعطيل البرنامج المساعد ل(او في وقت لاحق إعادة تمكين) الرافع العاجل.

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). لتمكين وسائل الإعلام فلاش الرافع ليتم تعطيلها عن طريق البرنامج المساعد ، وقد مرشح يمكن ان تضاف الى الرافع فلاش (إلا على WordPress النسخه 2-5 -- س ، كما ان التغيير في مجموعة المعالم لتنفيذ الاصدار 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). على ان تفعل ذلك ، فان تحرير \ رزمه العمل - ادارة \ يشمل \ media.php المفضلة لديك ملف باستخدام محرر نصوص مباشرة عن طريق تسجيل الدخول الى الخادم او محليا (وقد وسيتم تحميلها وفوق استبدال الملف الاصلي media.php). Change the following code at around line 765 to 770. تغيير الشفره التالية عند حوالي 765 الى 770 خط.

Before: قبل :
$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. / / اذا كانت لجنة الهدنه العسكرية وmod_security ، لا الوميض. :( :)
$flash = true; فلاش دولار = صحيح ؛
if ( false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), ‘mac’) && apache_mod_loaded(’mod_security’) ) اذا كانت الاجابه ب (كاذبة! == strpos (strtolower ($ _server [ 'http_user_agent']) ، 'ماك') & & apache_mod_loaded ( 'mod_security'))
$flash = false; فلاش دولار = كاذبة ؛

After: وبعد :
$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); فلاش apply_filters دولار = ( 'flash_uploader' ، صحيح) ؛
// If Mac and mod_security, no Flash. / / اذا كانت لجنة الهدنه العسكرية وmod_security ، لا الوميض. :( :)
$flash = true; فلاش دولار = صحيح ؛
if ( $flash && false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), ‘mac’) && apache_mod_loaded(’mod_security’) ) اذا دولار (فلاش & & كاذبة! == strpos (strtolower ($ _server [ 'http_user_agent']) ، 'ماك') & & apache_mod_loaded ( 'mod_security'))
$flash = false; فلاش دولار = كاذبة ؛

Then, download the بعد ذلك ، وتحميل no-flash-uploader.php - لا فلاش - uploader.php , and upload the PHP file to \wp-content\plugins\ directory, and activate the plugin via WordPress administration page. ، وتحميل الملف الى بي. اتش. بى \ محتوى رزمه العمل - \ ملحقات \ دليل ، وتفعيل البرنامج المساعد للادارة عن طريق WordPress الصفحه. 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. بعد تنشيط لتعطيل وسائل الاعلام فلاش الرافع ، الرافع لن تستفيد من الوميض التكنولوجيا ، وجميع الميزات المتقدمه التي تأتي مع كما تم تعطيل.

IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. هام : انت إله قراءة الصفحه المترجمه التي تقدم "كما هى" دون ضمان. 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. وخلافا للحقوق الترجمة ، والترجمة الاليه لا يفهم اللغة ، ودلاليه ، لغوي ، والتعابير من اللغة الطبيعيه ، وبالتالي تنتج في كثير من الاحيان غير دقيقة وذات نوعية منخفضه النص الذي مضلله وغير مفهوم. Thus, please refer to وهكذا ، يرجى الرجوع إلى original English article المادة الانكليزيه الاصليه when in doubt. عندما فى شك.



10 Responses to “Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin” 10 ردود الى "تعطيل WordPress 2،5 فلاش صورة / فيديو / وسائل الإعلام الرافع مع البرنامج المساعد"

  1. Fix WordPress 2.5 Image or Media Flash Uploader Not Working Issue in IE7 » Tip and Trick فيكس WordPress 2،5 صورة أو فلاش الرافع وسائل الاعلام لا تعمل في هذه المساله ie7 »نصيحه والخديعه
    April 3rd, 2008 11:18 الثالث من نيسان / ابريل ، 2008 11:47
    1

    [...] If using the Flash uploader is too much trouble, disable the Flash media uploader with this plugin. (...)اذا كنت تستخدم العاجل الرافع الكثير من المتاعب ، وتعطيل وسائل الاعلام الرافع فلاش مع هذا البرنامج المساعد. [...]

  2. Tambayan.ph » Fix the media uploader when using IE7 on the latest WordPress 2.5 Tambayan.ph »الواقعة عند استخدام وسائل الاعلام الرافع ie7 عن آخر WordPress 2،5
    April 4th, 2008 12:03 الرابع من نيسان / ابريل ، 2008 12:03
    2

    [...] an alternative you can just disable the media uploader and revert to the old one via a plugin. [...]بديل يمكنك تعطيل وسائل الاعلام الرافع والعودة الى القديم واحد عن طريق البرنامج المساعد. Or just use Firefox and wait for WordPress [...] او مجرد استخدام فايرفوكس ، وانتظر WordPress [...]

  3. Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin (Excerpt) » My Digital Life تعطيل WordPress 2،5 فلاش صورة / فيديو / وسائل الإعلام الرافع مع البرنامج المساعد (مقتطفات) »بلادي الحياة الرقميه
    April 17th, 2008 10:55 نيسان / ابريل 17th ، 2008 10:55
    3

    [...] reading Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin at Tip and [...] [...]القراءة تعطيل WordPress 2،5 فلاش صورة / فيديو / وسائل الإعلام في الرافع مع البرنامج المساعد ونصيحه [...]

  4. warriorfr
    April 20th, 2008 00:49 العشرين من ابريل ، 2008 00:49
    4

    Thank you very much ! شكرا جزيلا!
    Now I can send files, but I still get the same error message I have with IE7. استطيع الان ان ترسل الملفات ، ولكني لا يزال الحصول على نفس رسالة الخطأ انا مع ie7.
    However even with this error, the upload works. ولكن حتى مع هذا الخطأ ، ورفع الاشغال.

  5. admin الادارة
    April 20th, 2008 00:52 العشرين من ابريل ، 2008 00:52
    5

    What error message you have? ما هي رسالة الخطأ لديك؟

  6. sage حكيم
    April 21st, 2008 14:04 الحادي والعشرين نيسان / ابريل ، 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 Folowed لتوي من جميع التعليمات الخاصة بك وأنا لا يزال للوصول الى هذا الخطأ : خطأ فادح : الدعوة الى وظيفة غير معرف wp_constrain_dimensions () في / home2/newyorka/public_html/wp-admin/includes/image.php على الخط 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 لقد غيرت htaccess انتقل من وزارة الدفاع وليس شيء عملت بلادي على لجنة الهدنه العسكرية (10.5) في سفاري او فرنك فرنسي
    Anything else I can do? من أي شيء آخر يمكن أن أفعله؟
    thanks شكرا

  7. admin الادارة
    April 21st, 2008 15:11 الحادي والعشرين نيسان / ابريل ، 2008 15:11
    7

    Have you tried to re-upload wordpress files? هل حاولت اعادة WordPress تحميل ملفات؟ Probably some files have corrupted. وربما بعض الملفات قد أفسدتها.

  8. Upload Problems with Wordpress 2.5 | Batang Yagit تحميل المشاكل مع 2،5 WordPress | batang yagit
    May 10th, 2008 16:21 العاشر من ايار / مايو ، 2008 16:21
    8

    [...] to a blog post I found, “…the media uploader has numerous bugs and problems, which basically make the [...] [...]لبلوق وجدت بعد ، "وسائل الاعلام… الرافع العديد من العيوب والمشاكل ، اساسا جعل [...]

  9. Mario ماريو
    June 9th, 2008 18:51 التاسع من حزيران / يونية ، 2008 18:51
    9

    Is it possible to totally remove the media buttons from the Write Post page? هل من الممكن تماما لإزالة الازرار من وسائل الاعلام بعد انتهاء كتابه الصفحه؟ I don’t want users to use or even see these things. انا لا اريد للمستخدمين باستخدام او حتى نرى هذه الاشياء. I also want to remove the text editor buttons too! واريد ايضا ان ازالة محرر نصوص الازرار ايضا!

  10. sage حكيم
    June 9th, 2008 21:28 التاسع من حزيران / يونية ، 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. وكان من الاسهل بكثير ان تعود الى النسخه السابقة من الكلمات الا انني وهناك مشكلة اخرى. (وما زلت لا يمكن ان أطمر الفيديو...) وانني تصميم الصور ان تكون محددة عن حجم الصفحه بلوق ولكن وجدت ان يضع الرافع 'البديل' الحجم الى لغة تأشير النص الفائق ان الاسبقيه في عرض ، وتوحيد جميع الصور الى احجام اصغر الشكل. 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. وعندما أنهى كتابة هذا التقرير ، لا بد لي ان اعود من خلال هذا القانون وازالة كل 'من صيغة بديلة للقانون حتى يتسنى لجميع ويعتبر المخطط الأول عندما نشر.

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> يمكنك استخدام هذه العلامات : <ahref="" title=""> <abbrtitle=""> <acronymtitle=""> <b><blockquotecite=""> <cite><code><دل datetime = ""> <em><i><qCite=""> <strike><strong>

Subscribe without commenting اشترك بدون تعليق


Custom Search

Incoming Search Terms for the Article الوافدة من حيث البحث عن المادة

wordpress crunching WordPress الطحن - -- wordpress Crunching… WordPress الطحن… - -- wordpress 2.5 flash WordPress 2،5 فلاش - -- wordpress disable flash upload WordPress تعطيل رفع فلاش - -- wordpress flash uploader WordPress فلاش الرافع - -- crunching wordpress الطحن WordPress - -- wordpress flash upload WordPress تحميل فلاش - -- wordpress 2.5 crunching WordPress 2،5 الطحن - -- wordpress 2.5 add video WordPress 2،5 اضافة فيديو - -- uploader الرافع - -- no-flash-uploader.php - لا فلاش - uploader.php - -- wordpress crunching http error WordPress الطحن خطأ بروتوكول انتقال النص المتشعب - -- wordpress 2.5 crunching error WordPress خطأ 2،5 الطحن - -- no flash uploader wordpress لا فلاش الرافع WordPress - -- disable wordpress 2.5 image uploader تعطيل WordPress 2،5 صورة الرافع - -- wordpress disable flash uploader WordPress تعطيل فلاش الرافع - -- wordpress upload crunching WordPress تحميل الطحن - -- wordpress upload media WordPress تحميل وسائل الاعلام - -- No Flash Uploader لا فلاش الرافع - -- no flash upload plugin لا فلاش تحميل البرنامج المساعد - -- wordpress 2.5 image crunching problems WordPress 2،5 صورة الطحن المشاكل - -- wordpress 2.5 image upload crunching 2،5 WordPress تحميل صورة الطحن - -- wordpress 2.5 upload crunching 2،5 WordPress تحميل الطحن - -- wordpress 2.5 disable flash uploader WordPress 2،5 تعطيل فلاش الرافع - -- wordpress add media http error WordPress اضافة بروتوكول انتقال النص المتشعب وسائل الاعلام خطأ - -- video wordpress 2.5 فيديو WordPress 2،5 - -- Crunching… wordpress الطحن… WordPress - -- wordpress media upload ie7 WordPress وسائل الاعلام تحميل ie7 - -- crunching error wordpress الطحن خطأ WordPress - -- wordpress image upload http error WordPress تحميل صورة خطأ بروتوكول انتقال النص المتشعب - -- wordpress crunching error WordPress الطحن خطأ - -- wordpress upload image crunching WordPress تحميل الصورة الطحن - -- disable flash uploader تعطيل فلاش الرافع - -- Flash Uploader wordpress فلاش الرافع WordPress - -- wordpress image crunching WordPress صورة الطحن - -- wordpress no flash uploader WordPress لا فلاش الرافع - -- wordpress 2.5 crunching image upload WordPress 2،5 الطحن تحميل الصور - -- HTTP error wordpress upload بروتوكول انتقال النص المتشعب الخطأ تحميل WordPress - -- wordpress upload crunching error WordPress تحميل الطحن خطأ - -- "add media"+wordpress+error "اضافة وسائل الاعلام" + + خطأ WordPress - -- wordpress media uploads broken WordPress كسر تحميل وسائل الاعلام - -- wordpress 2.5 add media +crunching WordPress وسائل الاعلام اضافة 2،5 + الطحن - -- disable flash image wordpress 2.5 تعطيل فلاش صورة WordPress 2،5 - -- problems video wordpress 2.5 freezes مشاكل الفيديو WordPress 2،5 يتجمد - -- error-disable Media - خطأ في تعطيل وسائل الاعلام - -- wordpress 2.5 "http error" WordPress 2،5 "بروتوكول انتقال النص المتشعب خطأ" - -- wordpress 2.5 flash video WordPress 2،5 فلاش فيديو - -- flash uploader wordpress 2.5 فلاش الرافع WordPress 2،5 - -- crunching uploaded photos wordpress 2.5 الطحن التي تم تحميلها صور WordPress 2،5 - -- Wordpress 2.5 "no flash uploader" WordPress 2،5 "لا الرافع فلاش" - --