24 พฤษภาคม 2555, 13:29:02
ยินดีต้อนรับผู้เยี่ยมชม
  • noavata
  • ยินดีต้อนรับคุณ, ผู้เยี่ยมชม กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน
    เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น
Page Rank

ทำเว็บไซต์ | แต่งบอร์ด | ออกแบบ | SMF | Joomla | Drupal | WordPress | JQuery | CMS | ECommerce | Tel. +668-08577477

ส่งหัวข้อนี้พิมพ์ หน้า: 1 
icon message ผู้เขียน หัวข้อ: Upgrades SMF 2.0 to 2.0.1 แบบลงมือ Manual  (อ่าน 732 ครั้ง)
0 สมาชิก และ 1 ผู้เยี่ยมชม กำลังดูหัวข้อนี้
*
***



Thailand   ชาย ผู้เริ่มต้นกระทู้นี้ ออฟไลน์
icon message
general เมื่อ: 19 กันยายน 2554, 13:32:16
Upgrades  SMF 2.0 to 2.0.1 แบบลงมือ Manual

File Edits


./index.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1




ค้นหา :
โค๊ด: [Select]
$forum_version = 'SMF 2.0';

แทนที่ด้วย :
โค๊ด: [Select]
$forum_version = 'SMF 2.0.1';





./Sources/Subs-Menu.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0


แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1



./Sources/Subs-Members.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1


ค้นหา :
โค๊ด: [Select]
create_function('$string', ' $num = substr($string, 0, 1) === \'x\' ? hexdec(substr($string, 1)) : (int) $string;' . (empty($context['utf8']) ? ' return $num < 0x20 ? \'\' : ($num < 0x80 ? chr($num) : \'&#\' . $string . \';\');' : '

แทนที่ด้วย :
โค๊ด: [Select]
create_function('$string', ' $num = substr($string, 0, 1) === \'x\' ? hexdec(substr($string, 1)) : (int) $string; if ($num === 0x202E || $num === 0x202D) return \'\'; if (in_array($num, array(0x22, 0x26, 0x27, 0x3C, 0x3E))) return \'&#\' . $num . \';\';' . (empty($context['utf8']) ? 'return $num < 0x20 ? \'\' : ($num < 0x80 ? chr($num) : \'&#\' . $string . \';\');' : '




./Sources/Load.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1

ค้นหา :
โค๊ด: [Select]
create_function('$string', ' $num = substr($string, 0, 1) === \'x\' ? hexdec(substr($string, 1)) : (int) $string; return $num < 0x20 || $num > 0x10FFFF || ($num >= 0xD800 && $num <= 0xDFFF) || $num == 0x202E ? \'\' : \'&#\' . $num . \';\';'),

แทนที่ด้วย :
โค๊ด: [Select]
create_function('$string', ' $num = substr($string, 0, 1) === \'x\' ? hexdec(substr($string, 1)) : (int) $string; return $num < 0x20 || $num > 0x10FFFF || ($num >= 0xD800 && $num <= 0xDFFF) || $num === 0x202E || $num === 0x202D ? \'\' : \'&#\' . $num . \';\';'),



./Sources/ManageMaintenance.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1


ค้นหา :
โค๊ด: [Select]
$_POST['maxdays'] = (int) $_POST['maxdays']; if (!empty($_POST['groups']) && $_POST['maxdays'])

แทนที่ด้วย :
โค๊ด: [Select]
$_POST['maxdays'] = empty($_POST['maxdays']) ? 0 : (int) $_POST['maxdays']; if (!empty($_POST['groups']) && $_POST['maxdays'] > 0)




./Sources/Subs-Package.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1


ค้นหา :
โค๊ด: [Select]
// Build an array of parts. $versions[$id] = array( 'major' => (int) $parts[1], 'minor' => (int) $parts[2], 'patch' => (int) $parts[3], 'type' => empty($parts[4]) ? 'stable' : $parts[4], 'type_major' => (int) $parts[5], 'type_minor' => (int) $parts[6], 'dev' => !empty($parts[7]), );

แทนที่ด้วย :
โค๊ด: [Select]
// Build an array of parts. $versions[$id] = array( 'major' => (int) $parts[1], 'minor' => !empty($parts[2]) ? (int) $parts[2] : 0, 'patch' => !empty($parts[3]) ? (int) $parts[3] : 0, 'type' => empty($parts[4]) ? 'stable' : $parts[4], 'type_major' => !empty($parts[6]) ? (int) $parts[5] : 0, 'type_minor' => !empty($parts[6]) ? (int) $parts[6] : 0, 'dev' => !empty($parts[7]), );




./Sources/ModerationCenter.php

ค้นหา :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0

แทนที่ด้วย :
โค๊ด: [Select]
* @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0.1


ค้นหา :
โค๊ด: [Select]
$menuOptions = array( 'action' => 'moderate', );

แทนที่ด้วย :
โค๊ด: [Select]
$menuOptions = array( 'action' => 'moderate', 'disable_url_session_check' => true, );


เครดิต simplemachines.org

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 3.6.22   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 1 เมื่อ: 19 กันยายน 2554, 14:19:32
ไม่มีอะไรเพิ่มเติมครับพี่น้อง มีแต่เรื่องลิขสิทธิ์ (copyright)

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 6.0.2   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 2 เมื่อ: 21 กันยายน 2554, 18:57:29
สอบถามหน่อยครับ ของผมเป็น smf v2.5 อยากอับเกรดเป็น 2.0.xx แบบ แมนนวล ได้ไหมครับ และอันที่ปรับแต่งใหม่ จะหายไหมครับ

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 6.0   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 3 เมื่อ: 21 กันยายน 2554, 19:15:50
2.5 ไม่มีครับ มีแต่ 2.0 RC5 ถ้ายังเป็น RC อยู่ต้องอัพเกรดขึ้นมาเป็น 2.0 (ตัวเต็ม) ก่อน แล้วถึงค่อยอัพเกรดขึ้นมาเป็น 2.0.1

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 6.0.2   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 4 เมื่อ: 22 กันยายน 2554, 08:28:56
2.5 ไม่มีครับ มีแต่ 2.0 RC5 ถ้ายังเป็น RC อยู่ต้องอัพเกรดขึ้นมาเป็น 2.0 (ตัวเต็ม) ก่อน แล้วถึงค่อยอัพเกรดขึ้นมาเป็น 2.0.1
ครับ ขอโทษครับเขียนผิด แล้วมีแบบ แมนนวลไหมครับ 2.0 rc5 ไปเป็น 2.0 ตัวเต็มครับ ขอบคุณครับ

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 6.0   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 5 เมื่อ: 22 กันยายน 2554, 08:46:16
ไม่มีครับ เพราะมันต้องเปลี่ยนไฟล์ยกชุดเลย และแปลงฐานข้อมูลใหม่

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 6.0.2   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 6 เมื่อ: 31 ตุลาคม 2554, 16:01:29
อย่างงงี้ก็เปลี่ยนเป็น V.100 ได้

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Chrome 15.0.874.106   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 7 เมื่อ: 31 ตุลาคม 2554, 16:15:54
เปลี่ยนตัวเลขเป็น เวอร์ล้านยังได้เลยครับ แต่เพื่อประโยชน์อันใดหรือ..

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows XP    Firefox 7.0.1   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 8 เมื่อ: 27 มกราคม 2555, 14:02:24
ขอสอบถามนิดนึ่งครับ ของผม smf 2.0 RC5 ถ้าจะเปลี่ยนไปใช้ 1.1.xx ต้องเปลี่ยนยังไงครับ จะเอาข้อมูลเหมือนเดิม แต่แค่เปลี่ยนเวอร์ชั่น มันทำได้หรือเปล่าครับ ไม่กล้าลองถามดูก่อน พอดี smf 2.0 rc5 mod น้อยไปครับ ขอบคุณครับ

ลิงค์หัวข้อ: http://dexmore.com/topic/8717
Windows NT 6.1    Firefox 8.0   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
ส่งหัวข้อนี้พิมพ์ หน้า: 1 
กระโดดไป:  

Creative Commons License

SMF Thai Translation Powered by SMF © 2006–2012, Simple Machines LLC

WordPress Google เข้าเยี่ยมชมหน้านี้ล่าสุดเมื่อ : 19 พฤษภาคม 2555, 18:04:09

jQuery Plugin Copyright © 2551-2555 Themes Design & Hosting by DexMoreGroup

Sitemap | Thai Simple Machines Forum support SMF Thai

Web Begining | SMF Modifications | SMF Thai Translation Web Begining

Drupal | WordPress | CMS Joomla | jQuery Plugin | Web Graphics CMS Joomla