Installation
I consider install from yum is the best way.
rpm --import http://poptop.sourceforge.net/yum/RPM-GPG-KEY-PPTPrpm -Uvh http://poptop.sourceforge.net/yum/stable/rhel6/pptp-release-current.noarch.rpmyum install ppp pptpd -y
Installation
I consider install from yum is the best way.
rpm --import http://poptop.sourceforge.net/yum/RPM-GPG-KEY-PPTPrpm -Uvh http://poptop.sourceforge.net/yum/stable/rhel6/pptp-release-current.noarch.rpmyum install ppp pptpd -y
By default, Glasshfish handle the MIME-TYPE as audio/x-mpeg for mp3 file, thus IE 9 can not play the mp3 with HTML5 audio object.
The solution is:
Open the Glassfish/domain/domain1/config/default-web.xml
Find
mp3 audio/x-mpeg
and alter it to
mp3 audio/mpeg
Restart the glassfish & now IE 9 should be able to play mp3 file without problem.
Don’t forget to define following tag in your HTML file
<!DOCTYPE html>
This script allows you create a link that can open a RDP session by passing a server address parameter
eg.
function rdp(address){ try{ var rdpexe = 'C:\\WINDOWS\\system32\\mstsc.exe'; var ws = new ActiveXObject('WScript.Shell'); ws.Exec(rdpexe + " /v:" + address); } catch(e){ alert("This link will try to launch RDP session from web browser\n"+ "1. Please use Internet Explorer 7.0+\n"+ "2. Go to Tools > Internet options > Security > Trusted Sites & click \"sites\" button.\n"+ "3. Add *.your_domain to trusted site\n"+ "4. Click Custom Level & find the section \"ActiveX controls & plug-ins\"\n"+ "5. Select Enable for \"Initializing & Script ActiveX controls not marked as safe\""); }}
Maybe you’re facing the same problem with me: WPF applications cannot use Windows Visual Style by default.
If you want a solution, follow these steps:
This article introduce a simple way to alter the chameleon boot in Mac OS by default, this method suit for any one installed Chameleon on Windows drive to make dual boot.
1. Open a terminal window & mkdir bootmedia
2. open wowpc.iso in Finder, & copy all files to bootmedia folder.
3. Edit bootmedia/Extra/com.apple.Boot.plist file with text editor, add
<key>Default Partition</key>
<string>hd(x,y)</string>
then save it.
4. Now rebuild the wowpc.iso file & replace the one in your windows partition.
sudo hdiutil makehybrid -o wowpc.iso bootmedia/ -iso -hfs -joliet -eltorito-boot bootmedia/usr/standalone/i386/cdboot -no-emul-boot -hfs-volume-name "Chameleon" -joliet-volume-name "Chameleo" -iso-volume-name "Chameleo"
5. Replace the original wowpc.iso file in your windows drive.