วิีธีการทำให้คะแนนคุณภาพ กลับมาเริ่มใหม่อีกครั้ง มี 2 วิธี ประสบการณ์ของผมเอง
เมื่อก่อนก่อนนำ้ท่วมกรุงเทพฯ ผมสามารถรีเซทคะแนนคุณภาพใหม่ได้ทุำกครั้งเมือต้องการทีคะแนนคุณภาพต่ำ ถึง 2-3 /10 แต่หลังจากน้ำท่วมไม่สามารถทำได้ในหัวข้อ 1 ผมจึงหาวิธีปราำกฎว่า ใช้รูปแบบที่ 2 ได้
1.ตั้งแคมเปญใหม่
2.ใช้ รูปแบบการทำงานของคำหลัก หลายแบบผสมกัน คุณสามารถตั้งค่าคำหลักให้มีตัวเลือกใดก็ได้ต่อไปนี้เพื่อที่คุณจะได้สามารถกำหนดผู้ที่จะเห็นโฆษณาของคุณได้ดีขึ้น ตัวเลือกทั้งสี่อย่างได้แก่:
การทำงานแบบกว้าง: อนุญาตให้โฆษณาของคุณแสดงเมื่อมีข้อความค้นหาที่ใช้วลีเหมือนกันและในรูปแบบอื่นๆ ที่เกี่ยวข้อง
การทำงานแบบวลี: อนุญาตให้โฆษณาของคุณแสดงเมื่อมีข้อความค้นหาบางส่วนที่ตรงกับวลีทั้งหมด
เมื่อก่อนผมตั้งคำหลักแบบกว้างแต่ปัจจุบันไม่สามารถทำได้ โดยที่ำไม่ถึง max ของ แคมเปญ เพือให้รีเซตคะแนนคุณภาพใหม่ ให้เลือกรูปแบบคำหลักแบบวลีแทน ก็จะได้คะแนนคุณภาพ จากที่ทำได้ 9-10/10 เลยทีเ่ดียว ลองดูครับ
วันจันทร์ที่ 28 พฤศจิกายน พ.ศ. 2554
วันศุกร์ที่ 25 พฤศจิกายน พ.ศ. 2554
style of css ของ chrome
โค้ดจาก ie
<body id="showsalary_body" style={background-image:url('gradient2.png');background-repeat:repeat-x;} >
แ้เก้เป็น ดังข้างล่างเมื่อใช้กับ chrome (เครื่องหมาย { เปลี่ยนเป็น " แทน หรือ จาก " เป็น ' แทน)
<body id="showsalary_body" style="background-image:url('gradient2.png');background-repeat:repeat-x;" >
<body id="showsalary_body" style={background-image:url('gradient2.png');background-repeat:repeat-x;} >
แ้เก้เป็น ดังข้างล่างเมื่อใช้กับ chrome (เครื่องหมาย { เปลี่ยนเป็น " แทน หรือ จาก " เป็น ' แทน)
<body id="showsalary_body" style="background-image:url('gradient2.png');background-repeat:repeat-x;" >
วันพฤหัสบดีที่ 24 พฤศจิกายน พ.ศ. 2554
detect chrome browser
โค้ดข้างล่าง ไว้สำหรับ detect chrome browser แยกขาด safari
$(document).ready(
unction(){
if ($.browser.mozilla && $.browser.version >= "2.0" ){
alert('Mozilla above 1.9');
}
if( $.browser.safari ){
var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
if( is_chrome )
{
alert('Chrome');
}
else
{
alert('Safari');
}
}
if( $.browser.opera){
alert('Opera');
}
if ($.browser.msie && $.browser.version <= 6 ){
alert('IE 6 or below version');
}
if ($.browser.msie && $.browser.version > 6){
alert('IE above 6');
}
}
-ข้างล่างคือ ความรู้ื
On my Windows XP, with Chrome and Safari installed, I noticed that Google Chrome gives me this user agent:
"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1064 Safari/532.5"
This means that if you try to detect Safari only, you'll have to check that it doesn't contain "Chrome" :
// A quick solution without using regexp (to speed up a little).
var userAgent = navigator.userAgent.toString().toLowerCase();
if ((userAgent.indexOf('safari') != -1) && !(userAgent.indexOf('chrome') != -1)) {
alert('We should be on Safari only!');
}
เพิ่มเติม
$(document).ready(
unction(){
if ($.browser.mozilla && $.browser.version >= "2.0" ){
alert('Mozilla above 1.9');
}
if( $.browser.safari ){
var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
if( is_chrome )
{
alert('Chrome');
}
else
{
alert('Safari');
}
}
if( $.browser.opera){
alert('Opera');
}
if ($.browser.msie && $.browser.version <= 6 ){
alert('IE 6 or below version');
}
if ($.browser.msie && $.browser.version > 6){
alert('IE above 6');
}
}
-ข้างล่างคือ ความรู้ื
On my Windows XP, with Chrome and Safari installed, I noticed that Google Chrome gives me this user agent:
"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1064 Safari/532.5"
This means that if you try to detect Safari only, you'll have to check that it doesn't contain "Chrome" :
// A quick solution without using regexp (to speed up a little).
var userAgent = navigator.userAgent.toString().toLowerCase();
if ((userAgent.indexOf('safari') != -1) && !(userAgent.indexOf('chrome') != -1)) {
alert('We should be on Safari only!');
}
เพิ่มเติม
The negative side of having a new (and promisingly become popular) browser, no matter how good it can be, is you’ll have to test your web apps with it among many others.
Probably, the first step is to detect the browser from JavaScript code by parsing browser’s user agent, and here is what of Google Chrome.
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.2.149.27 Safari/525.13
I guess old JavaScript codes can mistakenly tell it Safari like when running the code snippet below using JQuery’s browser utility.
1 2 3 4 | $.each($.browser, function(i, val) { $("<div>" + i + " : <span>" + val + "</span></div>") .appendTo(document.body); }); |
It may be no problem until you find something wrong when your apps running on Chrome only. So, here is the code line to detect Chrome generally:
1 | var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() ); |
We’ll have to change the JQuery browser utility to support Chrome detection as follows:
1 2 3 4 5 6 7 8 9 10 11 | var userAgent = navigator.userAgent.toLowerCase(); // Figure out what browser is being used jQuery.browser = { version: (userAgent.match( /.+(?:rv|it|ra|ie|me)[\/: ]([\d.]+)/ ) || [])[1], chrome: /chrome/.test( userAgent ), safari: /webkit/.test( userAgent ) && !/chrome/.test( userAgent ), opera: /opera/.test( userAgent ), msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ), mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent ) }; |
Now, correct result shows on test screen:
Just one notice: Current version of JQuery (1.2.6) is treating Chrome as if it was Safari and basically no serious problem has been found yet. Modifying browser detection can cause the lib render pages/elements incorrectly for it has no knowledge of Chrome’s rendering engine. To keep compatibility, you can change line 7 back to:
7 | safari: /webkit/.test( userAgent ), |
But in this case the browser will be detected as both Chrome and Safari — not nice solution, I accept.
Anyway, it’s very likely that JQuery and other JavaScript frameworks will include Chrome to browser list for detection in next versions.
ie8 แสดงผล ie7 webpage ไม่ถูกต้อง
ให้เพิ่ม meta tag เข้าไปในส่วน head มีผลเฉพาะ page ที่่ต้องการ ทำ emulate ie7 เท่านั้น
<head>
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
(1/1)
ijeed:
ลักษณะของปัญหา
คุณอาจจะพบอาการเหล่านี้เมื่อเปิดใช้งานเว็บไซต์จาก Microsoft Internet Explorer 8 Beta 1
การจัดวางเว็บไซต์ที่ผิดเพี้ยน
การจัดเรียงข้อความหรือรูปที่ทับซ้อนกัน
ปัญหาที่เกี่ยวกับการใช้งาน JavaScript
สาเหตุ
ปัญหาเหล่านั้นเกิดขึ้นเนื่องจาก Internet Explorer Beta 8 Beta 1 นั้นเรียกดูเว็บเพจโดยใช้ Standards Mode ที่ปรับปรุงใหม่ล่าสุด ในขณะที่เว็บเพจนั้นถูกสร้างขึ้นมาสำหรับการเรียกดูจาก Internet Explorer 7
เพื่อตรวจสอบดูว่าปัญหาของคุณเกิดจาก Internet Explorer 8 Standards Mode จริงโปรดทำตามขั้นตอนต่อไปนี้
เปิดโปรแกรม Internet Explorer 8 Beta 1
หมายเหตุ หากคุณยังไม่ได้ติดตั้ง Internet Explorer 8 Beta 1 โปรดเข้าไปดาวน์โหลดได้ที่
http://www.microsoft.com/windo...winfamily/ie/ie8/getitnow.mspx
คลิกที่ Emulate IE 7 บนเมนูบาร์และจากนั้นคลิกปิดหน้าต่างบราวเซอร์ของคุณ
เปิดโปรแกรม Internet Explorer 8 Beta 1 และตรวจดูว่ามีการเปิดใช้งาน Emulate IE 7 อยู่ จากนั้นเข้าไปยังหน้าเว็บเพจที่คุณต้องการ
ตรวจดูว่าเว็บเพจนั้นมีการแสดงผลที่ถูกต้องหรือไม่
คลิกที่ Emulate IE 7 เพื่อ disable การจำลองการเปิดใช้งานจาก Internet Explorer 7 จากนั้นปิดหน้าต่างบราวเซอร์ลง
เปิดโปรแกรม Internet Explorer 8 Beta 1 และเข้าไปดูที่หน้าเว็บเพจนั้นอีกครั้งเพื่อยืนยันว่าปัญหาของคุณยังคงเป้นอยู่หลังจาก disable ฟังก์ชันการจำลองการเปิดใช้งานจาก Internet Explorer 7 แล้ว
การแก้ไข
เพื่อแก้ไขปัญหาเหล่านั้น เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม meta-tag เพื่อสั่งให้ Internet Explorer 8 Beta 1 แสดงผลได้ถูกต้องเหมือนเรียกดูจาก Internet Explorer 7 นั่นคือสามารถสั่งให้ Internet Explorer สามารถเรียกดูเว็บเพจนั้นจาก Internet Explorer 7 (Strict) mode หรือ Internet Explorer 5 (Quirk) mode ได้เหมือนกัน แต่ทั้งนี้ต้องขึ้นอยู่กับมาตรฐานของเอกสารที่สร้างขึ้นบนหน้าเว็บเพจนั้นๆ ด้วย
หมายเหตุ การเปิดความสามารถใน Internet Explorer 7compatibility tag นั้นจะช่วยแก้ไขปัญหาต่างๆ ได้ แต่อย่างไรก็ตาม อาจจะต้องทำการอัพเกรดเว็บไซต์ของคุณ โดยสามารถศึกษาเพิ่มเติมได้จาก http://www.microsoft.com/windo...adiness/DevelopersExisting.htm
คุณสามารถเลือกตั้งค่า Internet Explorer 8 Beta 1 เพื่อให้สามารถเปิดดูเว็บเพจได้เสมือนเรียกดูจาก Internet Explorer 7 ตามทางเลือกต่อไปนี้
การตั้งค่าทั้งไซต์ (Per-Site Basis)
เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม custom HTTP header เหล่านี้ลงไปเพื่อสั่งให้ Internet Explorer 8 Beta 1 อ่านเว็บเพจได้เหมือน Internet Explorer 7 ดังนี้
X-UA-Compatible: IE=EmulateIE7
ในการเพิ่ม custom HTTP response header ลงไปทั้งเว็บไซต์ใน Internet Information Services 7 บน Windows Server 2008 นั้น โปรดทำตามขั้นตอนต่อไปนี้
คลิก start และคลิก Administrative Tool จากนั้นคลิก click Internet Information Services (IIS) Manager
ภายใต้ Connections ให้ดับเบิ้ลคลิกเลือกเซิร์ฟเวอร์ที่คุณต้องการและดับเบิ้ลคลิกที่ Sites
คลิกที่เว็บไซต์ที่คุณต้องการเพิ่ม custom HTTP response header
ภายใต้หัวข้อ Web site name Home ให้ดับเบิ้ลคลิกที่ HTTP response header ใน IIS Section
หมายเหตุ ในขั้นตอนนี้ web site name คือชื่อของเว็บไซต์ที่คุณต้องการ
ภายใต้ Actions คลิกที่ Add
ใน Name box พิมพ์ X-UA-Compatible
ใน Value box พิมพ์ IE=EmulateIE7
ในการเพิ่ม custom HTTP response header ลงไปทั้งเว็บไซต์ใน Internet Information Services 6 และเวอร์ชั่นก่อนหน้า โปรดทำตามขั้นตอนต่อไปนี้
คลิก Start คลิก Run คลิก inetmgr.exe จากนั้นคลิก OK
ขยายเวิร์ฟเวอร์ที่คุณต้องการจากนั้นเลือก expand Web Sites
คลิกขวาที่เว็บไซต์ที่คุณต้องการและจากนั้นคลิกเลือก Properties
ภายใต้ Custom HTTP คลิกเลือก Add
ใน Name box พิมพ์ X-UA-Compatible
ใน Value box พิมพ์ IE=EmulateIE7
คลิก OK สองครั้ง
การตั้งค่าของแต่ละหน้าเว็บเพจ (Per-Page Basis)
เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม HTML tag ไว้หลังแท็ก <Head> บนหน้าเว็บดังนี้
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE
โปรดศึกษาตัวอย่างการใช้งานแท็กสำหรับการใช้งาน this Internet Explorer 7 compatibility เพื่อการตั้งค่าแบบต่อหน้าเว็บเพจดังนี้
โค๊ด:
<html>
<head>
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>My Web Page</title>
</head>
<body>
<p>Content goes here.</p>
</body>
</html>
ทดสอบเว็บไซต์ของคุณด้วย meta-tag
เพื่อตรวจสอบว่าคุณได้ติดตั้งแท็กอย่างถูกต้อง โปรดทำตามขั้นตอนต่อไปนี้เพื่อยืนยันการตั้งค่าของคุณ
หากคุณยังไม่ได้ติดตั้ง Internet Explorer 8 Beta 1 สามารถเข้าไปดาวน์โหลดได้ที่ http://www.microsoft.com/windo...winfamily/ie/ie8/getitnow.mspx
ดาวน์โหลด Internet Explorer 8 Beta 1 security update ตามที่มีอธิบายไว้ใน Microsoft Knowledge Base บทความหมายเลข 951804 การอัพเดทนี้จะช่วยเพิ่มการสนับสนุนให้แก่ IE=EmulateIE7 tag ของคุณ สำหรับข้อมูลเพิ่มเติมสามารถเข้าไปดูบทความดังกล่าวได้ที่ 951804 MS08-031: Security update for Internet Explorer 8 Beta 1
เรียกดูเว็บไซต์ด้วย Internet Explorer 8 Standards mode และตรวจสอบว่าปัญหาของคุณได้รับการดำเนินการแก้ไขแล้ว
สำหรับผู้ใช้
ผู้ใช้ Internet Explorer 8 Beta 1 สามารถแก้ไขปัญหาการเรียกดูเว็บเพจได้โดยคลิกที่ Emulate IE7 บนเมนูบาร์ของหน้าบราวเซอร์ของคุณ เมื่อ Emulate IE7 button ถูกเปิดใช้งานแล้ว เว็บเพจจะถูกเรียกดูจาก Internet Explorer 7 Standards mode
ไมโครซอฟท์ให้ตัวอย่างของการเขียนโปรแกรมเพื่อใช้ในการสาธิตเท่านั้น ไม่ได้ถือเป็นการรับรองหรือกล่าวเป็นนัยใดๆ ซึ่งรวมถึงไม่ได้รับรองการใช้งานเพื่อวัตถุประสงค์เฉพาะอย่างใดๆ เนื้อหาในบทความนี้ออกมาสำหรับผู้ที่มีความคุ้นเคยกับการเขียนโปรแกรมคอมพิวเตอร์และคุ้นเคยกับเครื่องมือในการใช้งานและกระบวนการของการแก้ไขปัญหาเป็นอย่างดี ทีม Microsoft support engineer สามารถช่วยอธิบายฟังก์ชันการใช้งานของกระบวนการทั้งหมดให้แก่คุณได้ แต่จะไม่ปรับแต่งตัวอย่างที่สาธิตด้วยการเพิ่มฟังก์ชันหรือสร้างกระบวนการเพื่อการใช้งานตามความต้องการของคุณแต่อย่างไร
ข้อมูลเพิ่มเติม
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับความสามารถในการใช้งานที่เข้ากันได้ (compatibility) ของโปรแกรม Internet Explorer 8 Beta 1 โปรดเข้าไปดูได้ที่
http://msdn2.microsoft.com/en-...s/library/cc288325(VS.85).aspx
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับ Cascading Style Sheets Compatibility ในการใช้งาน Internet Explorer โปรดเข้าไปดูที่
http://msdn2.microsoft.com/en-...s/library/cc351024(VS.85).aspx
สามารถใช้งานได้กับ
Windows Internet Explorer 8 Beta
เห็นว่ามีประโยชน์เลยเอามาฝากเว็บมาสเตอร์ทุกท่านครับ
อ้างอิงจาก / แหล่งที่มา : http://support.microsoft.com/gp/ie8_beta/th
<head>
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
อ้างอิง :http://www.thaiseoboard.com/index.php?topic=65782.0;wap2
(1/1)
ijeed:
ลักษณะของปัญหา
คุณอาจจะพบอาการเหล่านี้เมื่อเปิดใช้งานเว็บไซต์จาก Microsoft Internet Explorer 8 Beta 1
การจัดวางเว็บไซต์ที่ผิดเพี้ยน
การจัดเรียงข้อความหรือรูปที่ทับซ้อนกัน
ปัญหาที่เกี่ยวกับการใช้งาน JavaScript
สาเหตุ
ปัญหาเหล่านั้นเกิดขึ้นเนื่องจาก Internet Explorer Beta 8 Beta 1 นั้นเรียกดูเว็บเพจโดยใช้ Standards Mode ที่ปรับปรุงใหม่ล่าสุด ในขณะที่เว็บเพจนั้นถูกสร้างขึ้นมาสำหรับการเรียกดูจาก Internet Explorer 7
เพื่อตรวจสอบดูว่าปัญหาของคุณเกิดจาก Internet Explorer 8 Standards Mode จริงโปรดทำตามขั้นตอนต่อไปนี้
เปิดโปรแกรม Internet Explorer 8 Beta 1
หมายเหตุ หากคุณยังไม่ได้ติดตั้ง Internet Explorer 8 Beta 1 โปรดเข้าไปดาวน์โหลดได้ที่
http://www.microsoft.com/windo...winfamily/ie/ie8/getitnow.mspx
คลิกที่ Emulate IE 7 บนเมนูบาร์และจากนั้นคลิกปิดหน้าต่างบราวเซอร์ของคุณ
เปิดโปรแกรม Internet Explorer 8 Beta 1 และตรวจดูว่ามีการเปิดใช้งาน Emulate IE 7 อยู่ จากนั้นเข้าไปยังหน้าเว็บเพจที่คุณต้องการ
ตรวจดูว่าเว็บเพจนั้นมีการแสดงผลที่ถูกต้องหรือไม่
คลิกที่ Emulate IE 7 เพื่อ disable การจำลองการเปิดใช้งานจาก Internet Explorer 7 จากนั้นปิดหน้าต่างบราวเซอร์ลง
เปิดโปรแกรม Internet Explorer 8 Beta 1 และเข้าไปดูที่หน้าเว็บเพจนั้นอีกครั้งเพื่อยืนยันว่าปัญหาของคุณยังคงเป้นอยู่หลังจาก disable ฟังก์ชันการจำลองการเปิดใช้งานจาก Internet Explorer 7 แล้ว
การแก้ไข
เพื่อแก้ไขปัญหาเหล่านั้น เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม meta-tag เพื่อสั่งให้ Internet Explorer 8 Beta 1 แสดงผลได้ถูกต้องเหมือนเรียกดูจาก Internet Explorer 7 นั่นคือสามารถสั่งให้ Internet Explorer สามารถเรียกดูเว็บเพจนั้นจาก Internet Explorer 7 (Strict) mode หรือ Internet Explorer 5 (Quirk) mode ได้เหมือนกัน แต่ทั้งนี้ต้องขึ้นอยู่กับมาตรฐานของเอกสารที่สร้างขึ้นบนหน้าเว็บเพจนั้นๆ ด้วย
หมายเหตุ การเปิดความสามารถใน Internet Explorer 7compatibility tag นั้นจะช่วยแก้ไขปัญหาต่างๆ ได้ แต่อย่างไรก็ตาม อาจจะต้องทำการอัพเกรดเว็บไซต์ของคุณ โดยสามารถศึกษาเพิ่มเติมได้จาก http://www.microsoft.com/windo...adiness/DevelopersExisting.htm
คุณสามารถเลือกตั้งค่า Internet Explorer 8 Beta 1 เพื่อให้สามารถเปิดดูเว็บเพจได้เสมือนเรียกดูจาก Internet Explorer 7 ตามทางเลือกต่อไปนี้
การตั้งค่าทั้งไซต์ (Per-Site Basis)
เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม custom HTTP header เหล่านี้ลงไปเพื่อสั่งให้ Internet Explorer 8 Beta 1 อ่านเว็บเพจได้เหมือน Internet Explorer 7 ดังนี้
X-UA-Compatible: IE=EmulateIE7
ในการเพิ่ม custom HTTP response header ลงไปทั้งเว็บไซต์ใน Internet Information Services 7 บน Windows Server 2008 นั้น โปรดทำตามขั้นตอนต่อไปนี้
คลิก start และคลิก Administrative Tool จากนั้นคลิก click Internet Information Services (IIS) Manager
ภายใต้ Connections ให้ดับเบิ้ลคลิกเลือกเซิร์ฟเวอร์ที่คุณต้องการและดับเบิ้ลคลิกที่ Sites
คลิกที่เว็บไซต์ที่คุณต้องการเพิ่ม custom HTTP response header
ภายใต้หัวข้อ Web site name Home ให้ดับเบิ้ลคลิกที่ HTTP response header ใน IIS Section
หมายเหตุ ในขั้นตอนนี้ web site name คือชื่อของเว็บไซต์ที่คุณต้องการ
ภายใต้ Actions คลิกที่ Add
ใน Name box พิมพ์ X-UA-Compatible
ใน Value box พิมพ์ IE=EmulateIE7
ในการเพิ่ม custom HTTP response header ลงไปทั้งเว็บไซต์ใน Internet Information Services 6 และเวอร์ชั่นก่อนหน้า โปรดทำตามขั้นตอนต่อไปนี้
คลิก Start คลิก Run คลิก inetmgr.exe จากนั้นคลิก OK
ขยายเวิร์ฟเวอร์ที่คุณต้องการจากนั้นเลือก expand Web Sites
คลิกขวาที่เว็บไซต์ที่คุณต้องการและจากนั้นคลิกเลือก Properties
ภายใต้ Custom HTTP คลิกเลือก Add
ใน Name box พิมพ์ X-UA-Compatible
ใน Value box พิมพ์ IE=EmulateIE7
คลิก OK สองครั้ง
การตั้งค่าของแต่ละหน้าเว็บเพจ (Per-Page Basis)
เจ้าของเว็บไซต์และเว็บแอ็ดมินสามารถเพิ่ม HTML tag ไว้หลังแท็ก <Head> บนหน้าเว็บดังนี้
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE
โปรดศึกษาตัวอย่างการใช้งานแท็กสำหรับการใช้งาน this Internet Explorer 7 compatibility เพื่อการตั้งค่าแบบต่อหน้าเว็บเพจดังนี้
โค๊ด:
<html>
<head>
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>My Web Page</title>
</head>
<body>
<p>Content goes here.</p>
</body>
</html>
ทดสอบเว็บไซต์ของคุณด้วย meta-tag
เพื่อตรวจสอบว่าคุณได้ติดตั้งแท็กอย่างถูกต้อง โปรดทำตามขั้นตอนต่อไปนี้เพื่อยืนยันการตั้งค่าของคุณ
หากคุณยังไม่ได้ติดตั้ง Internet Explorer 8 Beta 1 สามารถเข้าไปดาวน์โหลดได้ที่ http://www.microsoft.com/windo...winfamily/ie/ie8/getitnow.mspx
ดาวน์โหลด Internet Explorer 8 Beta 1 security update ตามที่มีอธิบายไว้ใน Microsoft Knowledge Base บทความหมายเลข 951804 การอัพเดทนี้จะช่วยเพิ่มการสนับสนุนให้แก่ IE=EmulateIE7 tag ของคุณ สำหรับข้อมูลเพิ่มเติมสามารถเข้าไปดูบทความดังกล่าวได้ที่ 951804 MS08-031: Security update for Internet Explorer 8 Beta 1
เรียกดูเว็บไซต์ด้วย Internet Explorer 8 Standards mode และตรวจสอบว่าปัญหาของคุณได้รับการดำเนินการแก้ไขแล้ว
สำหรับผู้ใช้
ผู้ใช้ Internet Explorer 8 Beta 1 สามารถแก้ไขปัญหาการเรียกดูเว็บเพจได้โดยคลิกที่ Emulate IE7 บนเมนูบาร์ของหน้าบราวเซอร์ของคุณ เมื่อ Emulate IE7 button ถูกเปิดใช้งานแล้ว เว็บเพจจะถูกเรียกดูจาก Internet Explorer 7 Standards mode
ไมโครซอฟท์ให้ตัวอย่างของการเขียนโปรแกรมเพื่อใช้ในการสาธิตเท่านั้น ไม่ได้ถือเป็นการรับรองหรือกล่าวเป็นนัยใดๆ ซึ่งรวมถึงไม่ได้รับรองการใช้งานเพื่อวัตถุประสงค์เฉพาะอย่างใดๆ เนื้อหาในบทความนี้ออกมาสำหรับผู้ที่มีความคุ้นเคยกับการเขียนโปรแกรมคอมพิวเตอร์และคุ้นเคยกับเครื่องมือในการใช้งานและกระบวนการของการแก้ไขปัญหาเป็นอย่างดี ทีม Microsoft support engineer สามารถช่วยอธิบายฟังก์ชันการใช้งานของกระบวนการทั้งหมดให้แก่คุณได้ แต่จะไม่ปรับแต่งตัวอย่างที่สาธิตด้วยการเพิ่มฟังก์ชันหรือสร้างกระบวนการเพื่อการใช้งานตามความต้องการของคุณแต่อย่างไร
ข้อมูลเพิ่มเติม
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับความสามารถในการใช้งานที่เข้ากันได้ (compatibility) ของโปรแกรม Internet Explorer 8 Beta 1 โปรดเข้าไปดูได้ที่
http://msdn2.microsoft.com/en-...s/library/cc288325(VS.85).aspx
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับ Cascading Style Sheets Compatibility ในการใช้งาน Internet Explorer โปรดเข้าไปดูที่
http://msdn2.microsoft.com/en-...s/library/cc351024(VS.85).aspx
สามารถใช้งานได้กับ
Windows Internet Explorer 8 Beta
เห็นว่ามีประโยชน์เลยเอามาฝากเว็บมาสเตอร์ทุกท่านครับ
อ้างอิงจาก / แหล่งที่มา : http://support.microsoft.com/gp/ie8_beta/th
วันจันทร์ที่ 7 พฤศจิกายน พ.ศ. 2554
hack c++
http://www.mpcforum.com/showthread.php?23833-First-time-help-tutorial
How/Where to start learning C++!!
If you are new to coding hacks you will obviously need a little help and encouragement to begin, here is some help and resources which will help you on your way!
Stage 1 (day 1-15 )
Well you know nothing. Most people start with a programming language called C++ (pronounced 'C plus plus'). It is a very powerful language and there is alot of support for the language. You should spend the first stage not learning how to code hacks, but how to simply write C++ programs.
Get hold of a good book. I recommend 'SAMS Teach yourself C++ in 21 days'. Another tool which you will need is a compiler.
Recommended Compilers:
MS Visual C++ 6
Dev-CPP 5 (FREE)
Spend the first 14 days reading through the book. It is important that you understand the first week off by heart or you will not be able to code your own hacks.
Useful Links
http://msdn.microsoft.com/library/en...L/pluslang.asp
http://www.cprogramming.com
Stage 2 (day 15-20)
Now you have some understanding of C++ you have two choices. You can continue to read on or you can start learning some OpenGL. OpenGL hooking is controlling how your code controls the game - your code is called rather than the game's code.
Again, you shouldn't be learning to code hacks unless you feel comfortable. Head off to NeHe's sitewhich offers some great OpenGL tutorials. Again you do not need to read many tutoritals here, I recommend up to lesson 10.
Useful Links
http://nehe.gamedev.net/
http://msdn.microsoft.com/library/en...start_9uw5.asp
Stage 3 (day 20-30 )
Feel like youre getting somewhere? If you havent already due to the feeling of experimentation and exploration, take a look at other people's source code. Looking at the source codes is a good way to see how everything is structured.
You should be learning how to create hacks for games now. I have found that learning to hack counter-strike is a great starting point. I dont like counter-strike myself and I am a quake man, but most tutorials are based around counter-strike and there is a big community for counter-strike hacking so there is alot more support. So once you know the basics with counter-strike hacking you can move on to the game of your choice because chances are they will be similar.
Get hold of an OpenGL wrapper. Although most OpenGL wrappers are VAC detected, it doesnt harm to use and experiment with these offline on a LAN game. More about OpenGL wrappers...
Useful Links:
http://web1.server126.notraffic.de/f...5&pagenumber=1
http://web1.server126.notraffic.de/f...&threadid=8987
http://193.111.198.91/site/test2.php?site=Tutorials
And the MPC coding forums!
Stage 4 (day 30+)
You should now have a very good understanding of how hacks work. Now its up to you what you decide to do.
Perhaps you wish to start coding for the game of your choice. Dont forget the MPC forums are a valuable resource for any coder.
If you want to go another step in the learning process then learning about ASM is a good choice.
If all this has scared you then maybe you should revise the languages a bit more or go back and read the bits you left out.
If the cheating scene doesnt interest you any more and you just want to code then do just that.
Either roads offer fun and exciting new things.
Advanced
Winamp Control: http://www.winamp.com/nsdn/winamp2x/dev/sdk/api.jhtml
ASM: http://web1.server126.notraffic.de/f...threadid=17424
Tips
Taking notes of important topics is a great way to learn something. Try to make it precise but brief and it will surely help you because you are not just reading but you are involving your brain
KaZaa is a great tool. However, warez is not promoted and nor should it be discussed within the MPC forums, doing so will lead to a ban.
Dont feel stupid to post any questions you have on forums. Its a great, easy and fast way to solve any problems you have, and dont worry about getting flamed, the people that do flame are complete n00b wannab h4x0rs
Well that was fun By the way, the estimated time in days was just an estimate so please will the more elite coders not flame me but feel free to add anything
Please leave credits if this is going to appear anywhere else.
// sauce
สมัครสมาชิก:
บทความ (Atom)