عيد الاضحى المبارك


مواضيع تهمك

قسم أخبار XENFORO هنا يتم طرح اخر اخبار ومستجدات نسخه xenforo

صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7

قامت شركة XenForo بإطلاق نسخة جديدة من سكربت XenForo و كذا الإضافات الرسمية الخاصة بها في نسخة مدعومة و مستقرة ....

احصائياتى

الردود
3

المشاهدات
1580
MesterPerfect
.:: كبار شخصيات المنتدى ::.
المنتدى مراقب من خلاله
  • MesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to beholdMesterPerfect is a splendid one to behold

  • MesterPerfect غير متواجد حالياً

المشاركات
2,822

+التقييم
199

تاريخ التسجيل
Jan 2018

الاقامة
sohag, Egypt

نظام التشغيل
windows 8.1

رقم العضوية
1529
01-28-2020, 04:10 AM
المشاركة 1
01-28-2020, 04:10 AM
المشاركة 1
افتراضي صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7
قامت شركة XenForo بإطلاق نسخة جديدة من سكربت XenForo و كذا الإضافات الرسمية الخاصة بها في نسخة مدعومة و مستقرة .

وتحمل هذه التحديثات العديد من التحسينات و إصلاح للأخطاء التي وجدت في النسخ السابقة.

وكذلك ترقيع للمشكلة المتعلقة بإدخال البيانات على الصفحات من خارج الموقع
ويمكن ترقيع النسخة يدويا عن طريق الدخول إلى لوحة التحكم ثم المظهر ثم القوالب والبحث عن قالب
كود:
approval_queue_macros
ثم استبدال محتواه بهذا الكود
كود:
<xf:macro name="spam_log" arg-spamDetails="!">
    <xf:if is="$spamDetails">
        <xf:formrow label="{{ phrase('spam_log') }}">
            {$spamDetails}
        </xf:formrow>
    </xf:if>
</xf:macro>

<xf:macro name="action_row" arg-unapprovedItem="!" arg-handler="!">
    <xf:formrow label="{{ phrase('action') }}" class="js-approvalQueue-itemControls">
        <xf:macro name="action_radio" arg-unapprovedItem="{$unapprovedItem}" arg-handler="{$handler}" />
    </xf:formrow>
</xf:macro>

<xf:macro name="action_radio" arg-unapprovedItem="!" arg-handler="!">
    <div class="js-approvalQueue-itemControls">
        <xf:radio name="queue[{$unapprovedItem.content_type}][{$unapprovedItem.content_id}]">

            <xf:foreach loop="$unapprovedItem.getDefaultActions()" key="$action" value="$label">
                <xf:option value="{$action}" checked="{{ !$action ? 'checked' : '' }}" data-xf-click="approval-control">{$label}</xf:option>
            </xf:foreach>

        </xf:radio>
    </div>
</xf:macro>

<xf:macro name="item_message_type"
    arg-content="!"
    arg-contentDate=""
    arg-user="!"
    arg-typePhraseHtml="!"
    arg-headerPhraseHtml=""
    arg-spamDetails=""
    arg-messageHtml="!"
    arg-unapprovedItem=""
    arg-handler=""
    arg-actionsHtml="">

    <div class="message">
        <xf:css src="message.less" />
        <div class="message-inner">
            <div class="message-cell message-cell--user">

                <section itemscope itemtype="https://schema.org/Person" class="message-user">
                    <div class="message-avatar">
                        <div class="message-avatar-wrapper">
                            <xf:avatar user="$user" size="m" itemprop="image" />
                        </div>
                    </div>
                    <div class="message-userDetails">
                        <h4 class="message-name"><xf:username user="$user" rich="true" itemprop="name" /></h4>
                    </div>

                    <span class="message-userArrow"></span>
                </section>

            </div>
            <div class="message-cell message-cell--main">
                <div class="message-main">

                    <header class="message-attribution">
                        <span class="message-attribution-main"><xf:date time="{{ $contentDate ?: $content.post_date }}" /></span>
                        <span class="message-attribution-opposite">{$typePhraseHtml|strip_tags}</span>
                    </header>

                    <div class="message-content">

                        <xf:if contentcheck="true">
                            <xf:contentcheck>
                                <xf:if is="$headerPhraseHtml is not empty">
                                    <div class="messageNotice messageNotice--highlighted messageNotice--moderated">
                                        {$headerPhraseHtml|raw}
                                    </div>
                                </xf:if>

                                <xf:if is="$spamDetails is not empty">
                                    <div class="messageNotice messageNotice--warning">
                                        {$spamDetails}
                                    </div>
                                </xf:if>

                                <xf:if is="$messageHtml is not empty">
                                    <div class="message-userContent">
                                        <article class="message-body">{$messageHtml|raw}</article>
                                    </div>
                                </xf:if>
                            </xf:contentcheck>
                        <xf:else />
                            <div class="message-userContent">
                                <article class="message-body">
                                    <i>{{ phrase('no_additional_information_available') }}</i>
                                </article>
                            </div>
                        </xf:if>
                    </div>

                </div>
            </div>
            <div class="message-cell message-cell--extra">
                <xf:if is="$unapprovedItem AND $handler">
                    <xf:macro template="approval_queue_macros" name="action_radio"
                        arg-unapprovedItem="{$unapprovedItem}"
                        arg-handler="{$handler}" />
                <xf:else />
                    {$actionsHtml|raw}
                </xf:if>
            </div>
        </div>
    </div>
</xf:macro>
التغييرات والإصلاحات في XF 2.1.7

  • Ensure that some jobs do not attempt to complete or otherwise change state inside a transaction.
  • Ensure correct URL is used in the bookmark label filter when friendly URLs are not enabled.
  • Display correct username styling when viewing users linked to an IP.
  • In alerts and the news feed, ensure the "your post" link in the reaction item is clickable.
  • Ensure Gravatar rebuild job respects the options sent to it.
  • Prevent users from deleting their own accounts
  • Check for guest posts in post reaction items
  • Ensure login button when viewing a forum as a guest wraps properly.
  • Only try to hide the global action indicator if it's actually present.
  • Do not redirect back to the login page after a connected account request
  • Properly check for tag container inside tagger
  • Do not escape outbound email test subject phrase
  • Correctly handle add-ons created with incorrect casing when the namespace already exists.
  • Add additional wording to make it clear that the rejection reason will be shown to users awaiting approval.
  • Remove hard-coded height from payment inputs
  • Add missing phrase for 'could_not_find_subscriber_id_for_this_purchase_re quest'
  • Display PHP's memory_limit within server environment report.
  • Force choice builder to use temporary variable with set tags
  • Remove Google+ URL from the Google connected account template.
  • Allow disabling pointer events for nested tooltips
  • Remove unused parameter when fetching reaction phrase
  • Update promotion history interface for clarity
  • Fix post copier attachment regex


القوالب التي تم تعديلها
  • alert_post_reaction
  • approval_item_user
  • connected_account_associated_google
  • core_button.less
  • core_tooltip.less
  • forum_view
  • payment_initiate.less
  • reaction_item_post
  • thread_edit


النسخة الرسمية من سكربت XenForo تحمل رقم الإصدار XenForo 2.1.7

]أما الإصدارات الخاصة بالإضافات الرسمية فهي :

إضافة معرض الوسائط 2.1.7 XenForo Media Gallery

أما متطلبات التشغيل لتعمل النسخ بكفاءة فهي :

PHP 5.6 أو أحدث (PHP 7.3 يوصى به)
MySQL 5.5 أو أحدث (أيضا متوافق مع MariaDB/Percona إلخ.)
جميع الإضافات الرسمية تتطلب XenForo 2.1.
إضافة Enhanced Search يتطلب آخر إصدار Elasticsearch 2.0.


جميع عملاء XenForo يمكنهم تحميل النسخ من منطقة العميل
تنبيه مهم :

في حالة الترقية إلى النسخة 2.1.7 فيجب أيضا ترقية الإضافات الرسمية التي تستخدمها تجنبا لأي مشاكل أو تعارض مع النسخة
في حالة الترقية من الجيل الأول فيجب أن تدرك أن إضافات و إستايلات الجيل الأول لا تتوافق كليا مع الجيل الثاني
بخصوص بعض إضافات و إستايلات الجيل الثاني النسخة XF2.0.x فقد تكون أيضا غير متوافقة مع النسخة XF2.1.x لذا وجب التأكد من توافقها مع النسخة الجديدة وتجربتها قبل الترقية.

المصدر: XenForo 2.1.7 (Includes Security Fix) and Media Gallery 2.1.7 Released


قديم 01-29-2020, 12:40 AM
المشاركة 2
Mighty Dr.Wolf
.:: كبار شخصيات المنتدى ::.
المنتدى مراقب من خلاله
  • Mighty Dr.Wolf غير متواجد حالياً
افتراضي رد: صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7
شكرا لك وبارك الله فيك
ويارب يجعلها في ميزان حسناتك
سلمت يمينك
تحيتي

قديم 01-30-2020, 09:47 PM
المشاركة 3
abo-karim
.:: Administrator ::.
  • abo-karim غير متواجد حالياً
افتراضي رد: صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7
مشاء الله دائما تأتى لنا ما هو جديد

قديم 02-23-2020, 09:23 AM
المشاركة 4
ahmedkhalifa
.:: عضو مشارك ::.
  • ahmedkhalifa غير متواجد حالياً
افتراضي رد: صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2
خبر جيد ل اسكريبت مطور بسرعه ودعم يعتبر مفتوح
احسنت

اضافة رد

العلامات المرجعية

صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7


أدوات الموضوع

الانتقال السريع
المواضيع المتشابهه للموضوع: صدور النسخة 2.1.7 من سكربت XenForo ترقيع أمني و كذا إضافة المعرض 2.1.7
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
صدور النسخة XenForo 2.1.8 Patch 2 من سكربت XenForo هيلبرنت قسم أخبار XENFORO 3 05-17-2020 08:16 PM
صدور النسخة 2.1.6 من سكربت XenForo و كذا الإضافات الرسمية الخاصة بها MesterPerfect قسم أخبار XENFORO 6 12-19-2019 12:34 AM
صدور النسخة 2.1.5a من سكربت XenForo و Media Gallery 2.1.5 released maaidni قسم أخبار XENFORO 2 11-09-2019 02:09 PM
صدور النسخة 2.1.4 من سكربت XenForo maaidni قسم أخبار XENFORO 4 09-14-2019 05:46 PM
صدور النسخة 2.1.3 من سكربت XenForo هيلبرنت قسم أخبار XENFORO 2 07-31-2019 12:09 AM




الساعة الآن 11:47 PM
RSS 2.0XML Site MapTAGS SiteInfo SiteRSS FeedMap SectionsvB MapsMap TagSitemap ForumMaps Forum