خرید! امکانات دریافت فایل
نمایش نتایج : از شماره 1 تا 2 از 2

موضوع : فعال تصدی 4.4.6 و 3.5.4 منتشر شد

  1. # 1
    میشل Podbielski (فعال تصدی کارکنان) آواتار ها فعال تصدی
    تاریخ عضویت
    اکتبر 2009
    پست ها
    2720
    نوشته های وبلاگ
    1

    پیش فرض فعال تصدی 4.4.6 و 3.5.4 منتشر شد

    سلام

    Today we have bug fixing releases for 3.x and 4.x. Also some little improvements - details below.

    جدید :
    • Guest Cache active also for logged users on Archive pages.
      We figured our that archive looks same no matter what privileges users have. So we can use here Full File Guest Cache. In case if it is not appropriate for your forum you can disable it by ADMIN CP --> فعال تصدی Cache -> Guest Cache -> Full archive Guest Cache
    • Validation for some فعال تصدی گزینه
      This will be mostly helpful for new users. فعال تصدی validates some configuration parameters set in Admin CP.

    اشکالات اصلاح شده :

  2. # 2
    انجمن گفتگوی پرشین تصدی مترجم (فعال تصدی) ستاد
    تاریخ عضویت
    آگوست 2011
    پست ها
    429

    پیش فرض

    Here is an additonal quickfix for users with PHP version < 5.2.0. If you have newer version of PHP than 5.2.0 instaled on your server, you don't have to make any changes.

    In file:
    Code:
    forum root -> includes -> vbenterprisetranlator_class_translator.php
    Find (it should begin near line 472) :
    PHP Code:
    $token =  json_decode (curl_exec($obj_connection));
    self::$token_ttl time() + ($token->{'expires_in'});
    self::$token 'Authorization: Bearer '.$token->{'access_token'};
    curl_close($obj_connection);
    return 
    'Authorization: Bearer '.$token->{'access_token'}; 
    and replace it with:
    PHP Code:
    $fulltoken =  curl_exec($obj_connection);       
    preg_match('/{"access_token":"(.*?)"/'$fulltoken$token);
    preg_match('/"expires_in":"(.*?)"/'$fulltoken$expires);         
    self::$token_ttl time() + $expires[1];
    self::$token 'Authorization: Bearer '.$token[1];
    curl_close($obj_connection); 
    return 
    'Authorization: Bearer '.$token[1]; 
    Last edited by r.dziadusz; 18-01-12 at 16:21.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27