- Open IIS
- Go to Authentication
- Edit Anonymous Authentication
- Select Application pool identity
https://wordpress.org/support/topic/file-permissions-for-wordpress-on-iis-80/
module.exports = { | |
extend: function extend() { | |
for (var i = 1; i < arguments.length; i++) | |
for(var key in arguments[i]) | |
if(arguments[i].hasOwnProperty(key)) | |
arguments[0][key] = arguments[i][key]; | |
return arguments[0]; | |
}, |
(function() { | |
'use strict'; | |
var toTopLink = document.querySelector('.js-scroll'); | |
var scrollToTop = function(scrollDuration) { | |
var scrollStep = -window.scrollY / (scrollDuration / 15), | |
scrollInterval = setInterval(function() { | |
if ( window.scrollY !== 0 ) { | |
window.scrollBy( 0, scrollStep ); | |
} | |
else { |
# open files with sublime text (e.g. 'subl .') | |
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' | |
export EDITOR='subl -w' | |
# Kills all processes running on the specified port (e.g. 'killport 8080') | |
killport() { | |
lsof -i tcp:$1 | awk '(NR!=1) && ($1!="Google") && ($1!="firefox") {print $2}' | xargs kill | |
} | |
# shows pwd in iterm title |
https://wordpress.org/support/topic/file-permissions-for-wordpress-on-iis-80/
If you need to test Internet Explorer, it's often easier to use a VM on your Mac rather than using the test laptops.