1. Windows Explorer -> Tools -> Folder Options
2. Click on the "View" tab.
3. Scroll to bottom - UNCHECK "Use simple file sharing (Recommended)"
Notes-to-self and other scattered ramblings about writing code and drinking lots of coffee.
Sunday, January 27, 2008
Tuesday, December 25, 2007
Response.Expires = -1 not working
Forget -1. Really. Just forget it.
Response.ExpiresAbsolute = #2000-01-01#
Response.AddHeader "pragma", "no-cache"
Response.ExpiresAbsolute = #2000-01-01#
Response.AddHeader "pragma", "no-cache"
Copy, paste, done.
Monday, December 24, 2007
Fiddler running slow?
Put your IP address in your hosts file! If you've a dynamically assigned IP, you'll have to change it every once in a while - no big deal.
Ex:
127.0.0.1 localhost
Ex:
127.0.0.1 localhost
Friday, December 07, 2007
SSL in development environment (IIS)
By far the simplest way to setup an SSL certificate for your testing and/or development environment. Works for IIS5.0, 5.1(XP) and 6.0.
Step 1. Download Internet Information Services (IIS) 6.0 Resource Kit Tools
Step 2. When running the installation package, do a custom setup and select only the "selfSSL" component.
Step 3. Start -> All Programs -> IIS Resources -> SelfSSL -> SelfSSL
Step 4. At the command prompt, copy and paste the following:
Step 1. Download Internet Information Services (IIS) 6.0 Resource Kit Tools
Step 2. When running the installation package, do a custom setup and select only the "selfSSL" component.
Step 3. Start -> All Programs -> IIS Resources -> SelfSSL -> SelfSSL
Step 4. At the command prompt, copy and paste the following:
IMPORTANT: Make sure the replace [SERVER_NAME] with your real server(machine) name.
Done. Let me just say that I've actually seen people ask how to accomplish this task, only to be told, "It's a waste of time. Why would you ever need to do such a thing?!?! Just blah blah blah..."
Well first off, I don't know about you, but I like my dev environment to resemble, as closely as possible, my production environment. Second, this step is ABSOLUTELY CRITICAL when writing, testing and deploying ANY process that requires SSL. If you think it isn't, come back here when you finally figure it out and apologize.
Subscribe to:
Posts (Atom)