Whether you host in-house or with a managed Windows hosting provider, if you self-administer a web server it is good to know that by default IIS7 sets application pools to “time-out” after 20 minutes of inactivity. So if you don’t have any visitors to your site within 20 minutes, the application pool will shut down […]
GMail’s Send As Feature – SMTP Relaying
Gmail allows you to define multiple “send as” addresses. So if you want to use your GMail account but send email from You@YourCustomDomain.com, this can be supported. But, to support this you need to have a server set up that will relay the SMTP mail for you. For security reasons Google won’t allow you to […]
Email, gmail, IIS, security, smtpStarting All Sites in IIS on a Windows Server
So I recently had to do some work on a server that required stopping all sites in IIS but without stopping IIS itself. Here’s the short post on how I did that. Now of course I needed to have all the sites turned back on again. Just restarting IIS wouldn’t do what I needed – […]
Stopping All Sites on a Windows Server Without Stopping IIS
I had a need recently to stop all the sites running on a Windows server, but I didn’t want to stop IIS. This specific server has hundreds of sites running on it, so stopping each one at a time would have taken an excessive amount of time. So with a little Google-fu I stumbled across […]
Hosting, IIS, System AdministrationWordPress IIS and PNG Not Showing Up Headaches
Okay, this bit me again today, and I didn’t remember the solution from previous research so I had to research it again. That to me means I need to write it up in a blog post. :) I’m running WordPress for this blog. It is hosted on a Windows 2012 R2 server (using IIS, not Apache) […]
Convert a Folder to an Application on a Remote IIS Host
The topic recently came up of the best way to convert a folder to an application on remote shared hosting server. Some hosts may have this built-in to their control panel. I know many (like Cytanium) have options in the control panel to create Virtual Directories, but sometimes an application specifically needs its folder to […]
cytanium, Hosting, IIS, System AdministrationIIS/ASP.Net Install Error “The referenced assembly is not installed on your system”
Guest post from Rick Barber from OrcsWeb today… While attempting to install IIS through role services with other than the default options checked or ASP.Net under IIS in role services on Windows Server 2008 and 2008 R2 you may come across errors like the one below; ‘Attempt to install XXX failed with error code 0x800736B3. The […]
ASP.NET, IISBasic IIS Performance Statistics
There are some neat counters available in Windows Performance Monitor for showing some IIS (Internet Information Server) statistics. My three favorites are: Current Anonymous Users: This counter shows the number of current anonymous HTTP connections. Since most web sites serve content to anonymous users, it’s the one that seems to make the most sense to […]
Hosting, IIS, performance, System Administration, WindowsWordPress on Win08, Win12, and CentOS+NGINX
So… I’ve been reading a lot about nginx and how awesome it performs. It sounds magical! The Issue My blog (running WordPress) hasn’t been running as fast as I (or Google) would like. The TTFB (time to first bite) is often > 500 ms which is slower than it should be. I thought this would […]
Handler "PHP5x_via_FastCGI" has a bad module "FastCgiModule" in its module list
Below is a guest post by Desiree at OrcsWeb with an IIS/PHP/CGI troubleshooting tip: I installed WordPress for one of our managed clients recently, and what should have been a simple install, turned into quite a bit of troubleshooting. The client was running Windows Server and using IIS for their site hosting. Before starting the […]
ASP.NET, tip, Troubleshooting, Windows