how to set Http header X-XSS-Protection

I doubt it’d work as just a meta tag. You may have to tell your web server to send it as a real header. In PHP, you’d do it like header(“X-XSS-Protection: 0”); In ASP.net: Response.AppendHeader(“X-XSS-Protection”,”0″) In Apache’s config: Header set X-XSS-Protection 0 In IIS, there’s a section in the properties for extra headers. It often … Read more

Internet Explorer 11 does not add the Origin header on a CORS request?

Internet Explorer’s definition of the “same origin” differs to the other browsers. See the IE Exceptions section of the MDN documentation on the same-origin policy: Internet Explorer has two major exceptions when it comes to same origin policy: Trust Zones: if both domains are in highly trusted zone e.g, corporate domains, then the same origin … Read more

IE9 – CSS3111: @font-face encountered unknown error

I found this answer, which addresses the question more directly than the accepted answer, which really, shouldn’t have been the answer 🙂 And now to our main highlight – the “CSS3111: @font-face encountered unknown error”. This error is very ambiguous. If you have a look at MSDN again, you’ll see its description says: “An unknown … Read more

IE11 meta element Breaks SVG

It sounds as though you’re not in a modern document mode. Internet Explorer 11 shows the SVG just fine when you’re in Standards Mode. Make sure that if you have an x-ua-compatible meta tag, you have it set to Edge, rather than an earlier mode. <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> You can determine your document mode by … Read more

How can I test my web pages in Microsoft Internet Explorer on a Mac?

Update: Microsoft now provide virtual machine images for various versions of IE that are ready to use on all of the major OS X virtualisation platforms (VirtualBox, VMWare Fusion, and Parallels). Download the appropriate image from: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ On an Intel based Mac you can run Windows within a virtual machine. You will need one virtual … Read more

Respond.JS Not Working in IE 8

Same problem. I found out it’s my loading sequence problem, because I write CSS inline and then I call respond js script, so it looks like <script type=”text/javascript” src=”https://stackoverflow.com/questions/15127040/js/respond.min.js”></script> <link rel=”stylesheet” type=”text/css” href=”https://stackoverflow.com/questions/15127040/style.css” media=”screen” /> It should be <link rel=”stylesheet” type=”text/css” href=”https://stackoverflow.com/questions/15127040/style.css” media=”screen” /> <script type=”text/javascript” src=”https://stackoverflow.com/questions/15127040/js/respond.min.js”></script> ALWAYS link stylesheets or write inline CSS before … Read more

internet explorer 10 – how to apply grayscale filter?

IE10 does not support DX filters as IE9 and earlier have done, nor does it support a prefixed version of the greyscale filter. However, you can use an SVG overlay in IE10 to accomplish the greyscaling. Example: img.grayscale:hover { filter: url(“data:image/svg+xml;utf8,<svg xmlns=\’http://www.w3.org/2000/svg\’><filter id=\’grayscale\’><feColorMatrix type=\’matrix\’ values=\’1 0 0 0 0, 0 1 0 0 0, 0 … Read more

Disable IE security on Windows Server via PowerShell

function Disable-InternetExplorerESC { $AdminKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}” $UserKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}” Set-ItemProperty -Path $AdminKey -Name “IsInstalled” -Value 0 Set-ItemProperty -Path $UserKey -Name “IsInstalled” -Value 0 Stop-Process -Name Explorer Write-Host “IE Enhanced Security Configuration (ESC) has been disabled.” -ForegroundColor Green } function Enable-InternetExplorerESC { $AdminKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}” $UserKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}” … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)