Friday, September 05, 2008 Login    Register
  Friends & Family  
The following links are links to web sites made for or by friends and family. Some of them are really interesting. Enjoy!
  Technical Resources  
The following links are just a few of my favorite technical resources out there.
  Favorite Online Services  
These are not necessarily the "best" services, but rather some of my favorites (for better or worse). Not all of them are free either. :)
  Boycotts  

I have chosen to make a statement to the following companies using my wallet, my blog, and my voice.  I will never again return to these companies and I urge you to do the same.

McDonalds (since 1996)

This fast food chain is probably the worst at treating its customers with respect and consideration - especially when it comes to health issues.  However, this one is the best at marketing directly to children and that is NOT ACCEPTABLE.  I do not even spend other people's money there!

7-11 (since 2002)

The only people in this company with any customer service training are at the corporate offices.  However, after the first incident, you will be written off as a troublemaker.  To make things worse, their company policies treat every customer as a thief first, and customer second.  I do not even go into their parking lot.  I pay easily 10 cents more per gallon of gas and I will drive an extra 10 miles to keep my money out of their grasp.

Tuffy Auto Service Center (since 2007)

See my blog post on this one.  They do not tell their employees how to treat a customer.  They also drive your car like it's their own, speeding through the parking lot, screeching tires, and more.  And forget about bringing this up to a manager...

 


"If you try to fail and succeed... Did you really fail?"

Default banner
  Welcome to "The Mighty Blog"  
Will Strohl
Will Strohl
ASP.Net (VB)
Programmer
Welcome to my personal web site.  I plan to add plenty of information and freebies here for you to use, try, read, view, share, and ignore.  Have fun!

Please Note: My blog originally was hosted at Blogger, but due to the limitations of their service, I decided to do this myself (with the help of DotNetNuke, of course).  All posts have been transferred with their original content, minus the comments.  - Will (04/12/2007)
  HOW TO: Take Your DotNetNuke® Site Offline  
Location: BlogsThe Mighty Blog    
Posted by: Will Strohl 7/8/2008

Why would we need to bring our site "down", and make it unaccessible to the world?  The most common reason is that we need to alter something in IIS or on the file system, and a visitor being on the site may keep you from performing the task at hand.

Be aware though, that there are many ways to take a site offline.  But if you think it would be a better idea for DNN to do it for you, read on.  Keep in mind though, that this method brings the site down for everyone.  Even you.  If you need to bring it down for everyone except you, then I suggest implementing IIS IP address restrictions.

This is going to be a very, very, very, VERY complicated process, so be sure to pay extra special attention...  (not really)

The first step is to create a static HTML file with information regarding the outage.  A company logo and a simple "server undergoing scheduled maintence" message should do.

Here is an example that you can use:

<html>
<head>
    
<title>[YOUR COMPANY NAME] Web Site Outage</title>
    
<meta name="robots" content="noindex" />
    <
meta name="revisit-after" content="2 days" />
    <
style type="text/css">
        
#divWrapper1,#divWrapper2{position:static;display:block;width:100%;}
        
#divLeft{position:relative;display:inline;float:left;}
        
#divRight{position:relative;display:inline;float:right;}
    </
style>
</head>
<body>
    
<div id="divWrapper1"><div id="divLeft"><img src="images/logo1.gif" alt="[YOUR COMPANY NAME]" /></div><div id="divRight"><img src="images/logo2.gif" alt="[YOUR COMPANY NAME]" /></div></div>
    
<div id="divWrapper2"><h1>[YOUR COMPANY NAME] is experiencing technical difficulties</h1>
    
<p>We aplogize for the inconvenience. We are working hard to restore the web site for you as soon as possible.</p>
    
<p>Please check back with us in a few minutes.</p>
    
<p>Sincerely,<br />[YOUR COMPANY NAME] Staff</p></div>
</body>
</html>

Now, just save this on the root of your site with the filename of "app_offline.htm".  Once you do, any requests reaching the DNN directory will be responded to with your HTML file.  Just be sure you edit the META tags to tell the search engines to not index, and to return in a day.

Copyright ©2008 Will Strohl
Permalink |  Trackback

Your name:
Title:
Comment:
Security Code
Enter the code shown above in the box below
Add Comment   Cancel 
© Copyright 2004-2007 by Will Strohl. All rights reserved.