หมวดไฟฟ้า/อิเล็กทรอนิกส์/คอมพิวเตอร์ => Programming => ห้องคอมพิวเตอร์ => ห้อง SMF 2.0.X => ข้อความที่เริ่มโดย: Auto Man ที่ 05 พฤษภาคม 2559, 16:01:19
-
ขั้นตอนแรกให้เราก็ต้องติดตั้ง mod ตัวนี้ก่อนนะครับ
วิธีติดตั้งให้เราเปิดไฟล์
./Sources/Subs.php
หาโค๊ด
array(
'tag' => 'pre',
'before' => '<pre>',
'after' => '</pre>',
),
เติมโค๊ดนี้ก่อนที่หา
// PDF [pdf]example.pdf[/pdf]
array(
'tag' => 'pdf',
'type' => 'unparsed_content',
'content' => ($context['browser']['is_ie'] && !$context['browser']['is_mac_ie'] ? '<object type="application/pdf" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" data="$1" width="800" height="600"><param name="src" value="$1"><embed src="$1" width="500" height="400" /><noembed><a href="$1" target="_blank">$1</a></noembed></object>' : '<embed type="application/pdf" src="$1" width="500" height="400" /><noembed><a href="$1" target="_blank">$1</a></noembed>'),
'validate' => create_function('&$tag, &$data, $disabled', '
if (isset($disabled[\'url\']))
$tag[\'content\'] = \'$1\';'),
'disabled_content' => '<a href="$1" target="_blank">$1</a>',
),
เปิดไฟล์./Sources/Subs-Editor.php
หาโค๊ด
เปิดไฟล์./Sources/Subs-Editor.php
หาโค๊ด
ลบออกและแทนที่ด้วยโค๊ดนี้
$allowed_tags = array('b', 'u', 'i', 's', 'hr', 'list', 'li', 'font', 'size', 'color', 'pdf', 'img', 'left', 'center', 'right', 'url', 'email', 'ftp', 'sub', 'sup');
หาโค๊ด
array(
'image' => 'img',
'code' => 'img',
'before' => '[img]',
'after' => '[/img]',
'description' => $txt['image']
),
เติมโค๊ดนี้ต่อจากที่หา
array(
'image' => 'pdf',
'code' => 'pdf',
'before' => '[pdf]',
'after' => '[/pdf]',
'description' => $txt['pdf']
),
เปิดไฟล์ ./Themes/default/languages/Modifications.english.php
หาโค๊ด
?>
เติมโค๊ดนี้ก่อนจากที่หา
$txt['pdf'] = 'add PDF';
จากนั้นให้อัพโหลดไฟล์ "pdf.gif" ไปไว้ที่ "./Themes/default/images/bbc". (ดาวน์โหลดได้ที่ไฟล์แนบ)
วิธีใช้งาน
ตรงนี้มีภาพ! แต่ท่านจะมองไม่เห็น , ท่านต้อง สมัครสมาชิก หรือ ลงชื่อเข้าระบบ
เมื่อวางไฟล์ pdf เสร็จแล้วก็จะได้แบบนี้ครับ
มาจากกระทู้นี้ http://www.sslest.com/index.php/topic,1184.0.html
:-X
-
อีกที่มาจากที่นี่ http://www.justusers.net/forum/index.php?topic=4073.0
PDF Tag
Version: 1.1 Date 2008-10-31
Compatibility: SMF 1.1.6 & SMF 2.0 Beta 4
http://custom.simplemachines.org/mods/index.php?mod=1468
คล้ายๆการทำสป๊อยข้อความ หรือการเพิ่มเล่นเพลงดับบิวเอ็มเอ
เพิ่มรูปใน /บีบีซี
ดูเรื่องภาษา ธีม/ภาษา/มอดดิฟิเคชั่น.ไทย
จะทำให้สามารถโพสต์โชว์พีดีเอฟลงบอร์ดได้
ยิ่งไฟล์ใหญ่ การโหลดหน้าเว็บก็จะยิ่งนานและทำให้ค้างได้ (เหมือนการใช้ ไออี เปิดพีดีเอฟ ตามเว็บ)
ดังนั้นไฟล์พีดีเอฟ ควรให้มัขนาด ไม่เกิน 300-500 เค
-
การแก้ไขแบบแมนวล แพร์กับ smf 2.0.11
File Edits
./Sources/Subs.php
Find:
array(
'tag' => 'pre',
'before' => '<pre>',
'after' => '</pre>',
),
Add Before:
// PDF [pdf]example.pdf[/pdf]
array(
'tag' => 'pdf',
'type' => 'unparsed_content',
'content' => ($context['browser']['is_ie'] && !$context['browser']['is_mac_ie'] ? '<object type="application/pdf" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" data="$1" width="800" height="600"><param name="src" value="$1"><embed src="$1" width="500" height="400" /><noembed><a href="$1" target="_blank">$1</a></noembed></object>' : '<embed type="application/pdf" src="$1" width="500" height="400" /><noembed><a href="$1" target="_blank">$1</a></noembed>'),
'validate' => create_function('&$tag, &$data, $disabled', '
if (isset($disabled[\'url\']))
$tag[\'content\'] = \'$1\';'),
'disabled_content' => '<a href="$1" target="_blank">$1</a>',
),
./Sources/Subs-Editor.php
Find:
$allowed_tags = array('b', 'u', 'i', 's', 'hr', 'list', 'li', 'font', 'size', 'color', 'img', 'left', 'center', 'right', 'url', 'email', 'ftp', 'sub', 'sup');
Replace With: [Select]
$allowed_tags = array('b', 'u', 'i', 's', 'hr', 'list', 'li', 'font', 'size', 'color', 'pdf', 'img', 'left', 'center', 'right', 'url', 'email', 'ftp', 'sub', 'sup');
Find:
array(
'image' => 'img',
'code' => 'img',
'before' => '[img]',
'after' => '[/img]',
'description' => $txt['image']
),
Add After:
array(
'image' => 'pdf',
'code' => 'pdf',
'before' => '[pdf]',
'after' => '[/pdf]',
'description' => $txt['pdf']
),
./Themes/default/languages/Modifications.english.php
Find (at the end of the file):
ค้นหา
?>
Add Before:
$txt['pdf'] = 'add PDF';
File Operations
Move the included file "pdf.gif" to "./Themes/default/images/bbc".
-
ติดตั้งมอดตัวนี้ เมื่อวันที่ 6 พฤษภาคม 59
มาดูผลงานกัน
[pdf].....[/pdf]
-
ยังไม่โชว์แหะ มีหน้าจอเด้งขึ้นมาว่า...
ตรงนี้มีภาพ! แต่ท่านจะมองไม่เห็น , ท่านต้อง สมัครสมาชิก หรือ ลงชื่อเข้าระบบ
(http://upic.me/show/58423132)
แล้วมีหน้าจอขาวๆ ว่างไม่มีอะไร
-
ปัญหาเกิดจากต้องมีการติดตั้งส่วนขยายที่ตัวเบราเซอร์ด้วย