เฉลยสาเหตุของการ login เข้า hotmail ไม่ได้รวมทั้งวิธีแก้ไขครับ
ตั้งแต่วันที่ 20 กันยายนโดยประมาณ ทีมงาน Windows Live ได้เริ่มต้นขั้นตอนการป้องกันอีเมลสแปม โดยส่งอีเมลแจ้งให้ลูกค้าเปลี่ยนแปลงรหัสผ่านและทำงานร่วมกับเจ้าของอีเมลที่โดนเจาะข้อมูลเพื่อคืนสิทธิการใช้งานที่ถูกต้องให้แก่ผู้ใช้งานที่ได้รับผลกระทบ การกระทำดังกล่าวเป็นไปเพื่อต้องการกำจัดอีเมลสแปมที่ก่อปัญหาให้แก่ผู้ใช้บริการอีเมลของ Hotmail เพราะหลายท่านยังไม่ทราบว่าอีเมลของตนเองโดนคุกคามเป็นการเรียบร้อย เราจะประกาศแจ้งเกี่ยวกับมาตรการข้างต้นนี้ในวันที่ 24 กันยายน นี้เวลา 10:00 ที่ http://Microsoftontheissues.com/
จำนวนผู้ได้รับผลกระทบ
จากความพยายามที่ผ่านมา เราพบว่า เหตุการณ์ครั้งนี้ มีอีเมลที่ได้รับผลกระทบในจำนวนไม่ถึง 1% ของจำนวนผู้ใช้ Hotmail ทั้งหมดทั่วโลก
การแก้ไข
ทีมงานของ Hotmail ได้เคยส่งอีเมลแจ้งลูกค้าที่โดนเจาะข้อมูลให้ทำการเปลี่ยนรหัสผ่าน หากท่านได้เปลี่ยนรหัสผ่านเรียบร้อยแล้ว ท่านจะสามารถใช้งานอีเมลของท่านได้ตามปกติ
หากท่านยังไม่สามารถเข้าถึงอีเมลของท่านได้ โปรดทำตามขั้นตอนต่อไปนี้
ก. สำหรับท่านที่เข้าใช้บริการของ Hotmail ไม่ได้ แต่ยังจำคำถามในการขอรับรหัสผ่านได้ โปรดไปที่ลิงก์ต่อไปนี้เพื่อขอเรียกดูรหัสผ่าน https://windowslivehelp.com/PasswordReset.aspx
ข. สำหรับท่านที่เข้าใช้บริการของ Hotmail ไม่ได้ และจำคำถามในการขอรับรหัสผ่านไม่ได้ โปรดไปที่ลิงก์ต่อไปนี้เพื่อแจ้งปัญหาการใช้งานและจากนั้นทีมงานสนับสนุนจะเข้าช่วยเหลือแก้ไขปัญหาของท่าน https://windowslivehelp.com/forums.aspx?productid=10
ขอขอบคุณและขออภัยในความไม่สะดวกที่เกิดขึ้นในครั้งนี้
ท่านที่มีปัญหาการใช้งานขอให้แจ้งรายละเอียดมาให้ทีมงาน ตามวิธีนี้ http://docs.com/8EST
ที่มา: www.facebook.com/Windows7ThaiFan
itPotion
Thursday, September 30, 2010
Sunday, August 8, 2010
วิธีแก้ปัญหา Internet Explorer cannot open the internet site
วิธีแก้ปัญหา Internet Explorer cannot open the internet site www ... Operation aborted ใน Joomla
ปัญหานี้เท่าที่เจอ เกิดมาจากการใช้ Tooltip ในบาง Component หรือ module หรือ plugin หรือ template พูดง่ายๆ คือสาเหตุมาจากหลายทาง
วิธีแก้ (กรณี Joomla 1.5.15)
เปิดไฟล์ /libraries/joomla/html/html/behavior.php
ค้นหา
แทนที่ด้วย
ค้นหา
Bug อีกตัวสำหรับหน้า admin ของ Joomla ใน IE7 (ไม่แน่ใจว่า IE6, IE8 จะเป็นด้วยหรือเปล่า)
ที่เจอคือมีการเรียกใช้ pane หรือ behavior
ทางแก้
เปิดไฟล์ /libraries/joomla/html/pane.php
ค้นหา
ปัญหานี้เท่าที่เจอ เกิดมาจากการใช้ Tooltip ในบาง Component หรือ module หรือ plugin หรือ template พูดง่ายๆ คือสาเหตุมาจากหลายทาง
วิธีแก้ (กรณี Joomla 1.5.15)
เปิดไฟล์ /libraries/joomla/html/html/behavior.php
ค้นหา
$tooltipInit = ' window.addEvent(\'domready\', function(){
var JTooltips = new Tips($$(\''.$selector.'\'), '.$options.');
});';
แทนที่ด้วย
$tooltipInit = ' window.addEvent(\'load\', function(){ var JTooltips = new Tips ($$(\''.$selector.'\'), '.$options.'); });';
ค้นหา
$document->addScriptDeclaration("
window.addEvent('domready', function() {
SqueezeBox.initialize(".$options.");
$$('".$selector."').each(function(el) {
el.addEvent('click', function(e) {
new Event(e).stop();
SqueezeBox.fromElement(el);
});
});
});");
แทนที่ด้วย
$document->addScriptDeclaration("
window.addEvent('load', function() {
SqueezeBox.initialize(".$options.");
$$('".$selector."').each(function(el) {
el.addEvent('click', function(e) {
new Event(e).stop();
SqueezeBox.fromElement(el);
});
});
});");
Bug อีกตัวสำหรับหน้า admin ของ Joomla ใน IE7 (ไม่แน่ใจว่า IE6, IE8 จะเป็นด้วยหรือเปล่า)
ที่เจอคือมีการเรียกใช้ pane หรือ behavior
ทางแก้
เปิดไฟล์ /libraries/joomla/html/pane.php
ค้นหา
$js = ' window.addEvent(\'domready\', function(){ $$(\'dl.tabs\').each(function(tabs){ new JTabs(tabs, '.$options.'); }); });';
แทนที่ด้วย
$js = ' window.addEvent(\'load\', function(){ $$(\'dl.tabs\').each(function(tabs){ new JTabs(tabs, '.$options.'); }); });';
Credit: mindphp.com
Labels:
General Zone,
Internet Explorer
วิธีแก้ปัญหา PHP ตัดข้อความด้วย substr แล้วเป็น สี่เหลี่ยม
ถ้าใช้ภาษาไทยปกติก็จะไม่เจอปัญหานี้ แต่ถ้าเป็นเว็บหรือฐานข้อมูลที่ใช้ UTF-8 เวลาตัดข้อความด้วย substr ก็จะเจอปัญหา ตัวสุดท้ายกลายเป็นสี่เหลี่ยม ทางแก้คือต้องใช้ function ที่ทำงานกับข้อความที่เป็น Multi-byte มักพบบ่อยใน Modules ของ Joomla
ค้นหา
แล้วแทนด้วย
หรือแทนด้วย
ค้นหา
substr($msg,0,150);แล้วแทนด้วย
mb_substr($msg,0,150,'UTF-8');หรือแทนด้วย
iconv_substr($msg, 0,150, "UTF-8");
Labels:
General Zone,
PHP
Friday, July 30, 2010
การใช้ BCDEDIT ใน Windows 7 หรือ Vista
BCDEDIT เป็นตัวจัดการ Menu ในการ Boot ของ Windows
ใช้แก้ไขลำดับการบูท หรือ แก้ไขชื่อของ OS
ตัวอย่างการแก้ชื่อ Boot Menu ด้วย BCDEDIT
1. Click start แล้วพิมพ์ cmd ตรงช่อง search
2. คลิกขวาที่ cmd --> Run as administrator
3. พิมพ์ bcdedit จะได้ประมาณนี้ครับ
Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=DeviceHarddiskVolume1
description Windows Boot Manager
locale en-US
inherit {globalsettings}
default {current}
resumeobject {07cf7f57-e206-11dd-a0c8-bab28362099d}
displayorder {ntldr}
{current}
toolsdisplayorder {memdiag}
timeout 30
Windows Legacy OS Loader
------------------------
identifier {ntldr}
device partition=DeviceHarddiskVolume1
path ntldr
description Earlier Version of Windows
Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path Windowssystem32winload.exe
description Windows 7
locale en-US
inherit {bootloadersettings}
recoverysequence {07cf7f59-e206-11dd-a0c8-bab28362099d}
recoveryenabled Yes
osdevice partition=C:
systemroot Windows
resumeobject {07cf7f57-e206-11dd-a0c8-bab28362099d}
nx OptIn
4. แก้จาก Earlier Version of Windows เป็น Windows XP
พิมพ์ bcdedit /set {ntldr} description "Windows XP"
ถ้าแก้จาก Windows 7 เป็น Windows 7 Ultimate 64bit
พิมพ์ bcdedit /set {current} description "Windows 7 Ultimate 64bit"
ถ้าสำเร็จจะขึ้น The operation completed successfully.
for more information: http://www.dslreports.com/forum/r21741595-Windows-7-boot-manager-editing-questions
ใช้แก้ไขลำดับการบูท หรือ แก้ไขชื่อของ OS
ตัวอย่างการแก้ชื่อ Boot Menu ด้วย BCDEDIT
1. Click start แล้วพิมพ์ cmd ตรงช่อง search
2. คลิกขวาที่ cmd --> Run as administrator
3. พิมพ์ bcdedit จะได้ประมาณนี้ครับ
Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=DeviceHarddiskVolume1
description Windows Boot Manager
locale en-US
inherit {globalsettings}
default {current}
resumeobject {07cf7f57-e206-11dd-a0c8-bab28362099d}
displayorder {ntldr}
{current}
toolsdisplayorder {memdiag}
timeout 30
Windows Legacy OS Loader
------------------------
identifier {ntldr}
device partition=DeviceHarddiskVolume1
path ntldr
description Earlier Version of Windows
Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path Windowssystem32winload.exe
description Windows 7
locale en-US
inherit {bootloadersettings}
recoverysequence {07cf7f59-e206-11dd-a0c8-bab28362099d}
recoveryenabled Yes
osdevice partition=C:
systemroot Windows
resumeobject {07cf7f57-e206-11dd-a0c8-bab28362099d}
nx OptIn
4. แก้จาก Earlier Version of Windows เป็น Windows XP
พิมพ์ bcdedit /set {ntldr} description "Windows XP"
ถ้าแก้จาก Windows 7 เป็น Windows 7 Ultimate 64bit
พิมพ์ bcdedit /set {current} description "Windows 7 Ultimate 64bit"
ถ้าสำเร็จจะขึ้น The operation completed successfully.
for more information: http://www.dslreports.com/forum/r21741595-Windows-7-boot-manager-editing-questions
Friday, January 22, 2010
Ubuntu useful link
Dual-Boot Windows 7 and Ubuntu in Perfect Harmony
http://lifehacker.com/5403100/dual+boot-windows-7-and-ubuntu-in-perfect-harmony
Share Firefox and Thunderbird profiles between Windows and Linux
http://lifehacker.com/348858/use-a-single-data-store-when-dual-booting
ใช้ปุ่ม Grave Accent เปลี่ยนภาษาบน Ubuntu
http://imrgill.com/2009/10/27/how-to-grave-accent-switches-keyboard-layout-on-ubuntu.html
จะรู้ได้อย่างไรว่าตอนนี้คีบอร์ดบน Ubuntu ของเราเป็นภาษาอะไรอยู่
http://imrgill.com/2009/11/01/how-to-add-applet-keyboard-indicator-to-panel.html
Docky 2 รุ่นใหม่สวยใสกว่าเดิม
http://ubuntuclub.com/node/1580
Installing Picasa photo viewer for ubuntu linux
http://www.dedyisn.net/2009/06/installing-picasa-photo-viewer-for-ubuntu-linux/
วิธี add font ลงไปใน OS Ubuntu
http://guru.google.co.th/guru/thread?tid=0ea98b2aa336cdd5&pli=1
สคริปส์สำหรับเพิ่ม Font thai ให้ Ubuntu
http://learners.in.th/blog/mrgill/64496
How To Install Microsoft Text Fonts In Ubuntu Linux
http://www.makeuseof.com/tag/how-to-install-microsoft-core-fonts-in-ubuntu-linux/
วิธีการติดตั้งเครื่อง printer บน Ubuntu
http://pangiz.blogspot.com/2009/04/printer-ubuntu.html
การ add printer ผ่านเครือข่าย
http://forum.ubuntuclub.com/forum?topic=3728.0
How to install RAR Archiver (rar)
http://www.ubuntux.org/how-to-install-rar-archiver-rar
Open RAR Archives in Ubuntu
http://tombuntu.com/index.php/2008/02/15/open-rar-archives-in-ubuntu/
e Book "ทำดิสโทรใช้เองด้วย remastersys" โดยท่าน Teddy รวม 3 ตอน .pdf
http://forum.ubuntuclub.com/forum/topic,12449.0.html
6 Different Ways To Kill Unresponsive Programs in Linux
http://www.makeuseof.com/tag/6-different-ways-to-end-unresponsive-programs-in-linux/
Use System Monitor to Kill Stuck Processes in Linux
http://lifehacker.com/5426289/use-system-monitor-to-kill-stuck-processes-in-linux
Add icon Flag keyboard indicator in ubuntu 9.10
http://vdo.palungjit.com/video/52172/Add-icon-Flag-keyboard-indicator-in-ubuntu-910
Upgrade to Openoffice.org 3.2 final in Ubuntu karmic koala via PPA launchpad
http://unixmen.com/linux-tutorials/773-upgrade-to-openofficeorg-32-final-in-ubuntu-karmic-koala-via-ppa-launchpad
Clean up your grub menu and the kernels you do not use
http://www.go2linux.org/clean-linux-kernel-images-grub-menu
http://lifehacker.com/5403100/dual+boot-windows-7-and-ubuntu-in-perfect-harmony
Share Firefox and Thunderbird profiles between Windows and Linux
http://lifehacker.com/348858/use-a-single-data-store-when-dual-booting
ใช้ปุ่ม Grave Accent เปลี่ยนภาษาบน Ubuntu
http://imrgill.com/2009/10/27/how-to-grave-accent-switches-keyboard-layout-on-ubuntu.html
จะรู้ได้อย่างไรว่าตอนนี้คีบอร์ดบน Ubuntu ของเราเป็นภาษาอะไรอยู่
http://imrgill.com/2009/11/01/how-to-add-applet-keyboard-indicator-to-panel.html
Docky 2 รุ่นใหม่สวยใสกว่าเดิม
http://ubuntuclub.com/node/1580
Installing Picasa photo viewer for ubuntu linux
http://www.dedyisn.net/2009/06/installing-picasa-photo-viewer-for-ubuntu-linux/
วิธี add font ลงไปใน OS Ubuntu
http://guru.google.co.th/guru/thread?tid=0ea98b2aa336cdd5&pli=1
สคริปส์สำหรับเพิ่ม Font thai ให้ Ubuntu
http://learners.in.th/blog/mrgill/64496
How To Install Microsoft Text Fonts In Ubuntu Linux
http://www.makeuseof.com/tag/how-to-install-microsoft-core-fonts-in-ubuntu-linux/
วิธีการติดตั้งเครื่อง printer บน Ubuntu
http://pangiz.blogspot.com/2009/04/printer-ubuntu.html
การ add printer ผ่านเครือข่าย
http://forum.ubuntuclub.com/forum?topic=3728.0
How to install RAR Archiver (rar)
http://www.ubuntux.org/how-to-install-rar-archiver-rar
Open RAR Archives in Ubuntu
http://tombuntu.com/index.php/2008/02/15/open-rar-archives-in-ubuntu/
e Book "ทำดิสโทรใช้เองด้วย remastersys" โดยท่าน Teddy รวม 3 ตอน .pdf
http://forum.ubuntuclub.com/forum/topic,12449.0.html
6 Different Ways To Kill Unresponsive Programs in Linux
http://www.makeuseof.com/tag/6-different-ways-to-end-unresponsive-programs-in-linux/
Use System Monitor to Kill Stuck Processes in Linux
http://lifehacker.com/5426289/use-system-monitor-to-kill-stuck-processes-in-linux
Add icon Flag keyboard indicator in ubuntu 9.10
http://vdo.palungjit.com/video/52172/Add-icon-Flag-keyboard-indicator-in-ubuntu-910
Upgrade to Openoffice.org 3.2 final in Ubuntu karmic koala via PPA launchpad
http://unixmen.com/linux-tutorials/773-upgrade-to-openofficeorg-32-final-in-ubuntu-karmic-koala-via-ppa-launchpad
Clean up your grub menu and the kernels you do not use
http://www.go2linux.org/clean-linux-kernel-images-grub-menu
Tuesday, January 19, 2010
ข้อมูล 3BB(Maxnet) กับเว็บนอก
แตกประเด็นมาจาก http://gler.net/node/917
ใครใช้ 3BB เชค IP ด่วน!
ปล. ข้อมูลเดือนตุลาคม 2009 นะครับ โปรดใช้วิจารณญานในการอ่าน
รายงาน Bandwidth international ของ 3BB คับ
http://internet.nectec.or.th/internetmap/map/internationalmap/inetmap122009_international.png
3BB มี Bandwidth ออกต่างประเทศ(ยังไม่รวมกับของ Maxnet) 21.005Gbps และมีลูกค้าทั้งหมด 560K หากคิดรวมกับ TT&T SS(Maxnet) จะมี 28.3 G เพราะปัจจุบัน ลูกค้าบางส่วนยังใช้ Maxnet อยู่
True มี Bandwidth ออกต่างประเทศ 18.1 Gbps และมีลูกค้าประมาณ 680k
ToT มี Bandwidth ออกต่างประเทศ TOT 22 Gbps และมีลูกค้าประมาณ 980K
เห็นได้ชัดว่า inter 3BB มี Bandwidth สูงที่สุด และมีอัตราของลูกค้าที่ share Bandwidth น้อยที่สุดด้วย
เพียงแต่ 3BB ได้ แยกลิงค์ ไว้ชัดเจนว่า (indy เน้นการใช้งานในประเทศ) (premier เน้นการใช้งานต่างประเทศ)
ข้อมูลจาก nectec.or.th
สรุป...
ลูกค้า Maxnet+3BB โครงข่ายเดิม
IP ที่ขึ้นต้นด้วย 222, 114, 117, 112, 58
ยังใช้ Network ของ TT&T Subscriber System (TT&T SS) AS24326 จึงได้ความเร็วที่OK ไม่มีปัญหาใดๆทั้งสิ้น
และจริงๆ น่าจะเร็วกว่าเดิมด้วย...
เพราะลูกค้าโครงข่ายใหม่ 3BB Indy + 3BB 10Mbps. ถูกย้ายมาอยู่
ที่ Network ของ Triple-T Internet AS45758 ซึ่งผู้ที่ดวง+โชคร้าย
โดนย้ายมาอยู่ที่นี่ จะได้IP ที่ขึ้นต้นด้วย 110, 180
ซึ่งก็พบปัญหาต่างๆ นาๆ รวมถึง Bandwidth ของ International Link เมื่อเทียบกับปริมาณลูกค้าแล้ว ไม่เพียงพอ(และไม่มีทางที่จะพอ..)
ใครใช้ 3BB เชค IP ด่วน!
ปล. ข้อมูลเดือนตุลาคม 2009 นะครับ โปรดใช้วิจารณญานในการอ่าน
Labels:
3BB
Friday, December 25, 2009
วิธีแก้ปัญหา No D3DX9 dll found ของ MPC Home Cinema
วิธีแก้ปัญหา No D3DX9 dll found ของ Media Player Classic Home Cinema x64 กับ Windows7 64 bit
1. โหลด DirectX End-User Runtimes (August 2009) ประมาณ 103 MB
2. ใช้ Winrar แตกไฟล์ directx_aug2009_redist.exe ออกมา โดยคลิ๊กขวาที่ไฟล์ เลือก Extract to directx_aug2009_redist
3. เข้าไปในโฟลเดอร์ directx_aug2009_redist ที่แตกมา หาไฟล์ Mar2009_d3dx9_41_x64.cab แล้วคลิ๊กขวาที่ไฟล์ เลือก Extract to Mar2009_d3dx9_41_x64
4. เข้าไปในโฟลเดอร์ Mar2009_d3dx9_41_x64 แล้ว copy ไฟล์ d3dx9_41.dll ไปไว้ที่ C:Program FilesMPC HomeCinema (x64) เป็นอันเสร็จพิธีครับ
vdo สาธิตการทำ (แต่ว่าเค้าเป็น 32bit นะครับ)
Fix No D3DX9 dll found with Media Player Classic Home Cinema
1. โหลด DirectX End-User Runtimes (August 2009) ประมาณ 103 MB
2. ใช้ Winrar แตกไฟล์ directx_aug2009_redist.exe ออกมา โดยคลิ๊กขวาที่ไฟล์ เลือก Extract to directx_aug2009_redist
3. เข้าไปในโฟลเดอร์ directx_aug2009_redist ที่แตกมา หาไฟล์ Mar2009_d3dx9_41_x64.cab แล้วคลิ๊กขวาที่ไฟล์ เลือก Extract to Mar2009_d3dx9_41_x64
4. เข้าไปในโฟลเดอร์ Mar2009_d3dx9_41_x64 แล้ว copy ไฟล์ d3dx9_41.dll ไปไว้ที่ C:Program FilesMPC HomeCinema (x64) เป็นอันเสร็จพิธีครับ
vdo สาธิตการทำ (แต่ว่าเค้าเป็น 32bit นะครับ)
Fix No D3DX9 dll found with Media Player Classic Home Cinema
Labels:
DirectX,
Media Player Classic,
WinRar
Subscribe to:
Posts (Atom)