Skip to content

Instantly share code, notes, and snippets.

View tgoyer's full-sized avatar

Tim Goyer tgoyer

View GitHub Profile
@tgoyer
tgoyer / howto_python_flask_iis_wfastcgi.md
Last active April 8, 2020 21:42 — forked from dvas0004/howto_python_flask_iis_wfastcgi.md
Python Flask on IIS with wfastcgi

Assume IIS is installed. My machine already had IIs 8.5.

DV : Adding some notes when using MS IIS Express 10

Install Python

  1. Download web installer (Python 3.x 64-bit).
  2. Run as Administrator.
  3. Select custom installation for all users.
  4. Choose install directory such that there are no white spaces in the path. Not sure if it needs to be done. Just being cautious.
if (typeof window.localStorage == 'undefined' || typeof window.sessionStorage == 'undefined') (function () {
var Storage = function (type) {
function createCookie(name, value, days) {
var date, expires;
if (days) {
date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
expires = "; expires="+date.toGMTString();