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

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

ส่งหัวข้อนี้พิมพ์ หน้า: 1 
icon message ผู้เขียน หัวข้อ: Profile Fields and Icons เพิ่มช่องทางสื่อสารทาง Social Network  (อ่าน 1325 ครั้ง)
0 สมาชิก และ 1 ผู้เยี่ยมชม กำลังดูหัวข้อนี้
*
*


!Personal

Germany   ชาย ผู้เริ่มต้นกระทู้นี้ ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
  • ชื่อ: Profile Fields and Icons Mod
  • ผู้เขียน: 2by2host
  • นำเสนอโดย: DexMoreGroup
  • ประเภท: Profile
  • รองรับ: SMF 1.1.xx, 2.0.xx
  • ปรับปรุงล่าสุด: 11 พฤษจิกายน 2552
  • ต้นฉบับ: Profile Fields and Icons Mod

รายละเอียด
      เพิ่มฟิลด์ Facebook, MySpace และ Twitter ลงในข้อมูลส่วนตัวของสมาชิก สมาชิกสามารถเพิ่มชื่อผู้ใช้ Social Network ของตัวเองลงในฟิลด์ ซึ่งจะแสดงในข้อมูลโดยย่อ และหน้าอ่านกระทู้ (Display) เพื่อใช้ติดต่อสื่อสารกับผู้ใช้อื่นทาง Social Network

ตัวอย่าง


สำหรับ SMF 1.1.xx

แก้ไขไฟล์:

file $themedir/Profile.template.php

ค้นหา -->>
โค๊ด: [Select]
</tr><tr>
<td><b>', $txt[69], ': </b></td>
<td>';

เพิ่มไว้ก่อน -->>
โค๊ด: [Select]
</tr><tr>
<td colspan="2"><hr size="1" width="100%" class="hrcolor" /></td>
</tr><tr>
<td><b>', $txt['pfi_myspace_title'], ': </b></td>
<td>', !empty($context['member']['options']['myspace']) ? '<a href="http://www.myspace.com/' . $context['member']['options']['myspace'] . '" target="_blank">' . $context['member']['options']['myspace'] . '</a>'  : '', '</td>
</tr><tr>
<td><b>', $txt['pfi_facebook_title'], ': </b></td>
<td>', !empty($context['member']['options']['facebook']) ? '<a href="http://www.facebook.com/' . $context['member']['options']['facebook'] . '" target="_blank">' . $context['member']['options']['facebook'] . '</a>'  : '', '</td>
</tr><tr>
<td><b>', $txt['pfi_twitter_title'], ': </b></td>
<td>', !empty($context['member']['options']['twitter']) ? '<a href="http://www.twitter.com/' . $context['member']['options']['twitter'] . '" target="_blank">' . $context['member']['options']['twitter'] . '</a>'  : '', '</td>
</tr><tr>
<td colspan="2"><hr size="1" width="100%" class="hrcolor" /></td>

โค๊ด: [Select]
// Input box for custom titles, if they can edit it...

เพิ่มไว้ก่อน -->>
โค๊ด: [Select]
// scicons -->
echo '
<tr>
<td><b>', $txt['pfi_myspace_title'], ':</b><div class="smalltext">', $txt['pfi_myspace_desc'], '</div></td>
<td><input type="text" name="default_options[myspace]" maxlength="25" size="24" value="', @$context['member']['options']['myspace'], '" /></td>
</tr>
<tr>
<td><b>', $txt['pfi_facebook_title'], ':</b><div class="smalltext">', $txt['pfi_facebook_desc'], '</div></td>
<td><input type="text" name="default_options[facebook]" maxlength="25" size="24" value="', @$context['member']['options']['facebook'], '" /></td>
</tr>
<tr>
<td><b>', $txt['pfi_twitter_title'], ':</b><div class="smalltext">', $txt['pfi_twitter_desc'], '</div></td>
<td><input type="text" name="default_options[twitter]" maxlength="25" size="24" value="', @$context['member']['options']['twitter'], '" /></td>
</tr>
<tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr>';
// <-- scicons

file $themedir/Display.template.php

ค้นหา -->>
โค๊ด: [Select]
// Show the profile, website, email address, and personal message buttons.

เพิ่มไว้ก่อน -->>
โค๊ด: [Select]
// scicons -->
echo
!empty($message['member']['options']['myspace']) ? '<a href="http://www.myspace.com/' . $message['member']['options']['myspace'] . '" target="_blank" title="'.$txt['pfi_myspace_alt'].'"><img border="0" src="' . $settings['images_url'] . '/myspace.gif" alt="' . $message['member']['options']['myspace'] . '"></a> ' : '',
!empty($message['member']['options']['facebook']) ? '<a href="http://www.facebook.com/' . $message['member']['options']['facebook'] . '" target="_blank" title="'.$txt['pfi_facebook_alt'].'"><img border="0" src="' . $settings['images_url'] . '/facebook.gif" alt="' . $message['member']['options']['facebook'] . '"></a> ' : '',
!empty($message['member']['options']['twitter']) ? '<a href="http://www.twitter.com/' . $message['member']['options']['twitter'] . '" target="_blank" title="'.$txt['pfi_twitter_alt'].'"><img border="0" src="' . $settings['images_url'] . '/twitter.png" alt="' . $message['member']['options']['twitter'] . '"></a> ' : '',
!empty($message['member']['options']['myspace']) || !empty($message['member']['options']['facebook']) || !empty($message['member']['options']['twitter']) ? '<br />' : '';
      // <-- scicons

file $languagedir/Modifications.thai-utf8.php

เพิ่ม -->>
โค๊ด: [Select]
// pfi -->
$txt['pfi_myspace_title'] = 'MySpace';
$txt['pfi_myspace_desc'] = 'Your myspace.com username.';
$txt['pfi_myspace_alt'] = 'Me on MySpace';
$txt['pfi_facebook_title'] = 'Facebook';
$txt['pfi_facebook_desc'] = 'Your facebook.com username.';
$txt['pfi_facebook_alt'] = ' Me on Facebook';
$txt['pfi_twitter_title'] = 'Twitter';
$txt['pfi_twitter_desc'] = 'Your twitter.com username.';
$txt['pfi_twitter_alt'] = 'Follow me on Twitter';
// <-- pfi

ดาวน์โหลด: images.rar
ขออภัย! ท่านไม่สามารถเข้าถึงข้อมูลส่วนนี้ได้ กรุณาอ่าน เงื่อนไขการใช้งาน DexMore.Com

แตกไฟล์แล้วอัพโหลดไปไว้ที่
folder images -->> $themesdir

สร้างไฟล์: install.php เพื่อสร้างฐานข้อมูล ไว้ใน $boarddir (ที่เดียวกับไฟล์ SSI.php) รัน http://www.your_url.xxx/$boarddir/install.php -->> Enter เสร็จแล้วลบทิ้ง
โค๊ด: [Select]
<?php
if (!defined('SMF'))
die('Hacking attempt...');

$res db_query('SHOW COLUMNS FROM ' $db_prefix 'members'__FILE____LINE__);
while (
$row mysql_fetch_assoc($res))
{
if ($row['Field'] == 'MYSPACE')
{
$res2 db_query('SELECT ID_MEMBER, MYSPACE FROM ' $db_prefix 'members'__FILE____LINE__);
while ($row2 mysql_fetch_assoc($res2))
{
db_query("
INSERT IGNORE INTO {$db_prefix}themes
SET ID_MEMBER = {$row2['ID_MEMBER']}, ID_THEME=1, `variable`='myspace', `value`='" 
mysql_real_escape_string($row2['MYSPACE']) . "'",
__FILE__,
__LINE__
);
}
break;
}
}

?>

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


!Personal

Germany   ชาย ผู้เริ่มต้นกระทู้นี้ ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 1 เมื่อ: 5 กรกฎาคม 2553, 16:43:38
สำหรับ SMF 2.0.xx

แก้ไขไฟล์:

file $sourcedir/Load.php

ค้นหา -->>
โค๊ด: [Select]
'msn' => $profile['msn'] !='' && (empty($modSettings['guest_hideContacts']) || !$user_info['is_guest']) ? array(
'name' => $profile['msn'],
'href' => 'http://members.msn.com/' . $profile['msn'],
'link' => '<a href="http://members.msn.com/' . $profile['msn'] . '" class="extern" title="' . $txt['msn_title'] . ' - ' . $profile['msn'] . '"><img src="' . $settings['images_url'] . '/msntalk.gif" alt="' . $txt['msn_title'] . ' - ' . $profile['msn'] . '" border="0" /></a>',
'link_text' => '<a href="http://members.msn.com/' . $profile['msn'] . '" class="extern" title="' . $txt['msn_title'] . ' - ' . $profile['msn'] . '">' . $profile['msn'] . '</a>'
) : array('name' => '', 'href' => '', 'link' => '', 'link_text' => ''),

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
// pfi -->
'myspace' => $profile['myspace'] !='' && (empty($modSettings['guest_hideContacts']) || !$user_info['is_guest']) ? array(
'name' => $profile['myspace'],
'href' => 'http://www.myspace.com/'.$profile['myspace'],
'link' => '<a href="http://www.myspace.com/' . $profile['myspace'] . '" target="_blank" title="' . $txt['pfi_myspace_title'] . ' - ' . $profile['myspace'] . '"><img src="' . $settings['images_url'] . '/myspace.gif" alt="G" border="0" /></a>',
'link_text' => '<a href="http://www.myspace.com/' . $profile['myspace'] . '" target="_blank" title="' . $txt['pfi_myspace_title'] . ' - ' . $profile['myspace'] . '">' . $profile['myspace'] . '</a>'
) : array('name' => '', 'href' => '', 'link' => '', 'link_text' => ''),
'facebook' => $profile['facebook'] !='' && (empty($modSettings['guest_hideContacts']) || !$user_info['is_guest']) ? array(
'name' => $profile['facebook'],
'href' => 'http://www.facebook.com/'.$profile['facebook'],
'link' => '<a href="http://www.facebook.com/' . $profile['facebook'] . '" target="_blank" title="' . $txt['pfi_facebook_title'] . ' - ' . $profile['facebook'] . '"><img src="' . $settings['images_url'] . '/facebook.gif" alt="G" border="0" /></a>',
'link_text' => '<a href="http://www.facebook.com/' . $profile['facebook'] . '" target="_blank" title="' . $txt['pfi_facebook_title'] . ' - ' . $profile['facebook'] . '">' . $profile['facebook'] . '</a>'
) : array('name' => '', 'href' => '', 'link' => '', 'link_text' => ''),
'twitter' => $profile['twitter'] !='' && (empty($modSettings['guest_hideContacts']) || !$user_info['is_guest']) ? array(
'name' => $profile['twitter'],
'href' => 'http://www.twitter.com/'.$profile['twitter'],
'link' => '<a href="http://www.twitter.com/' . $profile['twitter'] . '" target="_blank" title="' . $txt['pfi_twitter_title'] . ' - ' . $profile['twitter'] . '"><img src="' . $settings['images_url'] . '/twitter.png" alt="G" border="0" /></a>',
'link_text' => '<a href="http://www.twitter.com/' . $profile['twitter'] . '" target="_blank" title="' . $txt['pfi_twitter_title'] . ' - ' . $profile['twitter'] . '">' . $profile['twitter'] . '</a>'
) : array('name' => '', 'href' => '', 'link' => '', 'link_text' => ''),
// pfi -->

ค้นหา -->>
โค๊ด: [Select]
mem.birthdate, mem.member_ip, mem.member_ip2, mem.icq, mem.aim, mem.yim, mem.msn, mem.posts, mem.last_login,

แก้เป็น -->>
โค๊ด: [Select]
mem.myspace AS myspace, mem.facebook, mem.twitter, mem.birthdate, mem.member_ip, mem.member_ip2, mem.icq, mem.aim, mem.yim, mem.msn, mem.posts, mem.last_login,

ค้นหา -->>
โค๊ด: [Select]
mem.birthdate, mem.icq, mem.aim, mem.yim, mem.msn, mem.posts, mem.last_login, mem.karma_good,

แก้เป็น -->>
โค๊ด: [Select]
mem.myspace AS myspace, mem.facebook, mem.twitter, mem.birthdate, mem.icq, mem.aim, mem.yim, mem.msn, mem.posts, mem.last_login, mem.karma_good,

ค้นหา -->>
โค๊ด: [Select]
'icq', 'msn', 'aim', 'yim'

แก้เป็น -->>
โค๊ด: [Select]
'icq', 'msn', 'aim', 'yim', 'myspace', 'facebook', 'twitter'

file $sourcedir/Profile-Modify.php

ค้นหา -->>
โค๊ด: [Select]
'yim' => array(
'type' => 'text',
'label' => $txt['yim'],
'subtext' => $txt['your_yim'],
'size' => 24,
'input_attr' => array('maxlength="32"'),
'permission' => 'profile_extra',
),

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
// pfi -->
'myspace' => array(
'type' => 'text',
'label' => $txt['pfi_myspace_title'],
'subtext' => $txt['pfi_myspace_desc'],
'size' => 24,
'input_attr' => array('maxlength="32"'),
'permission' => 'profile_extra',
),
'facebook' => array(
'type' => 'text',
'label' => $txt['pfi_facebook_title'],
'subtext' => $txt['pfi_facebook_desc'],
'size' => 24,
'input_attr' => array('maxlength="32"'),
'permission' => 'profile_extra',
),
'twitter' => array(
'type' => 'text',
'label' => $txt['pfi_twitter_title'],
'subtext' => $txt['pfi_twitter_desc'],
'size' => 24,
'input_attr' => array('maxlength="32"'),
'permission' => 'profile_extra',
),
// <-- pfi

ค้นหา -->>
โค๊ด: [Select]
'yim', 'hr',

แก้เป็น -->>
โค๊ด: [Select]
'yim', 'myspace', 'facebook', 'twitter', 'hr',

file $sourcedir/Subs-Members.php

ค้นหา -->>
โค๊ด: [Select]
'icq' => '',

เพิ่มไว้ก่อน -->>
โค๊ด: [Select]
// pfi -->
'myspace' => '',
'facebook' => '',
'twitter' => '',
// <-- pfi

ค้นหา -->>
โค๊ด: [Select]
mem.id_member, mem.member_name, mem.real_name, mem.email_address,

แก้เป็น -->>
โค๊ด: [Select]
mem.id_member, mem.member_name, mem.real_name, mem.email_address, mem.myspace AS myspace, mem.facebook, mem.twitter,

file $themedir/Display.template.php

ค้นหา -->>
โค๊ด: [Select]
', !isset($context['disabled_fields']['yim']) && !empty($message['member']['yim']['link']) ? '<li>' . $message['member']['yim']['link'] . '</li>' : '', '

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
', !isset($context['disabled_fields']['facebook']) && !empty($message['member']['facebook']['link']) ? '<li>' . $message['member']['facebook']['link'] . '</li>' : '', '
', !isset($context['disabled_fields']['myspace']) && !empty($message['member']['myspace']['link']) ? '<li>' . $message['member']['myspace']['link'] . '</li>' : '', '
', !isset($context['disabled_fields']['twitter']) && !empty($message['member']['twitter']['link']) ? '<li>' . $message['member']['twitter']['link'] . '</li>' : '', '

file $themedir/Profile.template.php

ค้นหา -->>
โค๊ด: [Select]
<td align="center">', $txt['yim'], '</td>

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
<td align="center">', $txt['pfi_myspace_title'], '</td>
<td align="center">', $txt['pfi_facebook_title'], '</td>
<td align="center">', $txt['pfi_twitter_title'], '</td>

ค้นหา -->>
โค๊ด: [Select]
<td align="center">', $buddy['yim']['link'], '</td>

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
<td align="center">', $buddy['myspace']['link'], '</td>
<td align="center">', $buddy['facebook']['link'], '</td>
<td align="center">', $buddy['twitter']['link'], '</td>

ค้นหา -->>
โค๊ด: [Select]
', !isset($context['disabled_fields']['yim']) && !empty($context['member']['yim']['link']) ? '<li>' . $context['member']['yim']['link'] . '</li>' : '', '

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
', !isset($context['disabled_fields']['myspace']) && !empty($context['member']['myspace']['link']) ? '<li>' . $context['member']['myspace']['link'] . '</li>' : '', '
', !isset($context['disabled_fields']['facebook']) && !empty($context['member']['facebook']['link']) ? '<li>' . $context['member']['facebook']['link'] . '</li>' : '', '
', !isset($context['disabled_fields']['twitter']) && !empty($context['member']['twitter']['link']) ? '<li>' . $context['member']['twitter']['link'] . '</li>' : '', '

file $themedir/Who.template.php

ค้นหา -->>
โค๊ด: [Select]
', $member['yim']['link'], '

แก้เป็น -->>
โค๊ด: [Select]
', $member['yim']['link'], ' ', $member['myspace']['link'], ' ', $member['facebook']['link'], ' ', $member['twitter']['link'], '

file $languagedir/Modifications.thai-utf8.php

เพิ่ม -->>
โค๊ด: [Select]
// pfi -->
$txt['pfi_myspace_title'] = 'MySpace';
$txt['pfi_myspace_desc'] = 'Your myspace.com username.';
$txt['pfi_myspace_alt'] = 'Me on MySpace';
$txt['pfi_facebook_title'] = 'Facebook';
$txt['pfi_facebook_desc'] = 'Your facebook.com username.';
$txt['pfi_facebook_alt'] = ' Me on Facebook';
$txt['pfi_twitter_title'] = 'Twitter';
$txt['pfi_twitter_desc'] = 'Your twitter.com username.';
$txt['pfi_twitter_alt'] = 'Follow me on Twitter';
// <-- pfi

ดาวน์โหลด: images.rar
ขออภัย! ท่านไม่สามารถเข้าถึงข้อมูลส่วนนี้ได้ กรุณาอ่าน เงื่อนไขการใช้งาน DexMore.Com

แตกไฟล์แล้วอัพโหลดไปไว้ที่
folder images -->> $themesdir

สร้างไฟล์: install.php เพื่อสร้างฐานข้อมูล ไว้ใน $boarddir (ที่เดียวกับไฟล์ SSI.php) รัน http://www.your_url.xxx/$boarddir/install.php -->> Enter เสร็จแล้วลบทิ้ง
โค๊ด: [Select]
<?php
// Twitter Profile Field

if (!defined('SMF'))
die('Hacking attempt...');

global 
$smcFunc;

db_extend('packages');

$smcFunc['db_add_column']("members",
array(
 'name' => 'myspace''type' => 'varchar(50)''null' => false,
),
array(),
'do_nothing',
''
);

$smcFunc['db_add_column']("members",
array(
 'name' => 'facebook''type' => 'varchar(50)''null' => false,
),
array(),
'do_nothing',
''
);

$smcFunc['db_add_column']("members",
array(
 'name' => 'twitter''type' => 'varchar(50)''null' => false,
),
array(),
'do_nothing',
''
);

?>

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



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 2 เมื่อ: 5 กรกฎาคม 2553, 19:21:40
ผมลองสร้างฐานข้อมูลแล้วมันขึ้นว่า Hacking attempt...ครับ เลยจะลองเข้าไปสร้างเองใน phpMyadmin แต่ติดสงสัยตรงนี้ครับ

อ้างถึง
INSERT IGNORE INTO {$db_prefix}themes
SET ID_MEMBER = {$row2['ID_MEMBER']}, ID_THEME=1, `variable`='myspace

ตรง {$row2['ID_MEMBER']} น่าจะต้องเป็นตัวแปรหรือเปล่าครับ ต้องใส่ค่าให้กับมันยังไงหรือไม่ครับ

ขอบพระคุณมากครับ

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


!Personal

Germany   ชาย ผู้เริ่มต้นกระทู้นี้ ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 3 เมื่อ: 5 กรกฎาคม 2553, 19:35:01
Hacking attempt...

ก็เสร็จซิครับ

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



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 4 เมื่อ: 5 กรกฎาคม 2553, 20:27:20
ทำได้แล้วครับ ขอบคุณมากครับ  Afro

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



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 5 เมื่อ: 9 พฤษภาคม 2554, 01:17:09
หา          ', !isset($context['disabled_fields']['yim']) && !empty($context['member']['yim']['link']) ? '<li>' . $context['member']['yim']['link'] . '</li>' : '', '

ไม่เจออ่ะครับ

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


!Personal

Germany   ชาย ผู้เริ่มต้นกระทู้นี้ ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 6 เมื่อ: 9 พฤษภาคม 2554, 02:20:21
ใช้ SMF เวอร์ใหนหรือครับ?

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

Creative Commons License

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

WordPress Google เข้าเยี่ยมชมหน้านี้ล่าสุดเมื่อ : 16 พฤษภาคม 2555, 23:47:39

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