الويب العربي

الويب العربي (http://www.arabwebtalk.com/index.php)
-   قسم المنتديات (http://www.arabwebtalk.com/forumdisplay.php?f=112)
-   -   3.8.4 PL1 مع خطوات الترقيع وملفات جاهزه (http://www.arabwebtalk.com/showthread.php?t=124316)

T®oY 15-10-2009 10:29 PM

3.8.4 PL1 مع خطوات الترقيع وملفات جاهزه
 
المرفقات 1
خطوات ترقيه النسخة 3.8.4 لنسخة vBulletin بعد ظهور اخطاء بها

والترقيه للباتش pl1 كما صدر من الشركه الرسمية باذن الله


الخطوات :

الملف
class_dm.php
ابحث عن

كود PHP:

function verify_link(&$link)
 {
  if (
preg_match('#^www\.#si'$link))
  {
   
$link 'http://' $link;
   return 
true;
  }
  else if (!
preg_match('#^[a-z0-9]+://#si'$link))
  {
   
// link doesn't match the http://-style format in the beginning -- possible attempted exploit
   
return false;
  }
  else
  {
   return 
true;
  }
 } 


إستبدله بـ


كود PHP:

 function verify_link(&$link$strict false)
 {
  if (
preg_match('#^www\.#si'$link))
  {
   
$link 'http://' $link;
   return 
true;
  }
  else if (!
preg_match('#^[a-z0-9]+://#si'$link))
  {
   
// link doesn't match the http://-style format in the beginning -- possible attempted exploit
   
return false;
  }
  else if (
$strict && !preg_match('#^(http|https)://#si'$link))
  {
   
// link that doesn't start with http:// or https:// should not be allowed in certain places (IE: profile homepage)
   
return false;
  }
  else
  {
   return 
true;
  }
 } 

الملف
class_dm_user.php
ابحث عن

كود PHP:

function verify_homepage(&$homepage)
 {
  return (empty(
$homepage)) ? true $this->verify_link($homepage);
 } 


إستبدله بـ

كود PHP:

function verify_homepage(&$homepage)
 {
  return (empty(
$homepage)) ? true $this->verify_link($homepagetrue);
 } 


ملف version_vbulletin.php لغير المرخصين يبقى كما هو
اما المرخصين يحذف كل مابداخله ويضع

كود PHP:

<?php
define
('FILE_VERSION_VBULLETIN''3.8.4 Patch Level 1');
?>

وفى المرفق الملفين معدلين :cool:

والله الموفق ,,
تحياتى
TroY

(A.H.M.E.D) 12-11-2009 07:24 AM

مشكور اخوية العزيز على الجهد المبذول

تحياتي


جميع الأوقات بتوقيت مكة المكرمة. الساعة الآن » 01:06 AM.

Powered by vBulletin
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © ArabWebTalk.Com 2004-2012