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. عندما فى شك.
Related Articles مقالات ذات صلة
- Fix WordPress 2.5 Image or Media Flash Uploader Not Working Issue in IE7 فيكس WordPress 2،5 صورة أو فلاش الرافع وسائل الاعلام لا تعمل في هذه المساله ie7
- Media Buttons Disabler Plugin to Remove “Add Media” Icons in WordPress 2.5 أزرار وسائط الاعلام disabler البرنامج المساعد لازالة "اضافة وسائل الاعلام" في الايقونات WordPress 2،5
- WordPress 2.5.1 Released for Download الافراج WordPress 2.5.1 للتحميل
- PHP Fatal Error on Call to Add_Query_Var in Taxonomy.php After Upgrading to WordPress 2.5 RC2 بي. اتش. بى خطأ فادح على الدعوة الى add_query_var في taxonomy.php بعد الترقيه الى 2،5 WordPress rc2
- Call To Undefined Function: ctype_digit() in WordPress 2.5 الدعوة الى مسمى الوظيفة : ctype_digit () 2،5 في WordPress
- WordPress 2.5 RC2 Released for Download WordPress الافراج عن 2،5 rc2 للتحميل
- Call to Undefined Function: wp_constrain_dimensions() When Uploading Images or image_downsize() in Gallery/Media Library in WordPress 2.5 الدعوة الى مسمى الوظيفة : wp_constrain_dimensions () عند تحميل الصور او image_downsize () في معرض / وسائل الاعلام في مكتبه WordPress 2،5
- Call to Undefined Function get_currentuserinfo() Error in WordPress نداء الى وظيفة غير معرف get_currentuserinfo ((خطأ في WordPress
- How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin كيف سيو الامثل WordPress 2،5 بلوق بدون عنوان صفحة الويب الامثل عنوان البرنامج المساعد
- Upload Photos to Flickr with Friendly Flickr Applications تحميل الصور الى فليك ار الودية مع التطبيقات فليك ار.




























April 3rd, 2008 11:18 الثالث من نيسان / ابريل ، 2008 11:47
[...] If using the Flash uploader is too much trouble, disable the Flash media uploader with this plugin. (...)اذا كنت تستخدم العاجل الرافع الكثير من المتاعب ، وتعطيل وسائل الاعلام الرافع فلاش مع هذا البرنامج المساعد. [...]
April 4th, 2008 12:03 الرابع من نيسان / ابريل ، 2008 12:03
[...] 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 [...]
April 17th, 2008 10:55 نيسان / ابريل 17th ، 2008 10:55
[...] reading Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin at Tip and [...] [...]القراءة تعطيل WordPress 2،5 فلاش صورة / فيديو / وسائل الإعلام في الرافع مع البرنامج المساعد ونصيحه [...]
April 20th, 2008 00:49 العشرين من ابريل ، 2008 00:49
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. ولكن حتى مع هذا الخطأ ، ورفع الاشغال.
April 20th, 2008 00:52 العشرين من ابريل ، 2008 00:52
What error message you have? ما هي رسالة الخطأ لديك؟
April 21st, 2008 14:04 الحادي والعشرين نيسان / ابريل ، 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 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 شكرا
April 21st, 2008 15:11 الحادي والعشرين نيسان / ابريل ، 2008 15:11
Have you tried to re-upload wordpress files? هل حاولت اعادة WordPress تحميل ملفات؟ Probably some files have corrupted. وربما بعض الملفات قد أفسدتها.
May 10th, 2008 16:21 العاشر من ايار / مايو ، 2008 16:21
[...] to a blog post I found, “…the media uploader has numerous bugs and problems, which basically make the [...] [...]لبلوق وجدت بعد ، "وسائل الاعلام… الرافع العديد من العيوب والمشاكل ، اساسا جعل [...]
June 9th, 2008 18:51 التاسع من حزيران / يونية ، 2008 18:51
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! واريد ايضا ان ازالة محرر نصوص الازرار ايضا!
June 9th, 2008 21:28 التاسع من حزيران / يونية ، 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. وكان من الاسهل بكثير ان تعود الى النسخه السابقة من الكلمات الا انني وهناك مشكلة اخرى. (وما زلت لا يمكن ان أطمر الفيديو...) وانني تصميم الصور ان تكون محددة عن حجم الصفحه بلوق ولكن وجدت ان يضع الرافع 'البديل' الحجم الى لغة تأشير النص الفائق ان الاسبقيه في عرض ، وتوحيد جميع الصور الى احجام اصغر الشكل. 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. وعندما أنهى كتابة هذا التقرير ، لا بد لي ان اعود من خلال هذا القانون وازالة كل 'من صيغة بديلة للقانون حتى يتسنى لجميع ويعتبر المخطط الأول عندما نشر.