<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gatecitymedia.com</title>
	<atom:link href="http://gatecitymedia.com/feed" rel="self" type="application/rss+xml" />
	<link>http://gatecitymedia.com</link>
	<description>WordPress, Web Hosting, Graphic Design</description>
	<lastBuildDate>Tue, 22 Nov 2011 15:30:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Inserting shortcode into ANY template&#8230;</title>
		<link>http://gatecitymedia.com/wordpress/inserting-shortcode-into-any-template</link>
		<comments>http://gatecitymedia.com/wordpress/inserting-shortcode-into-any-template#comments</comments>
		<pubDate>Tue, 22 Nov 2011 15:28:00 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[scripting]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wpaudio]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=148</guid>
		<description><![CDATA[Do you have a great plugin that you use all of the time, but wish you could put it in a very custom location, maybe on the index.php or footer.php page of your template, instead of just a Post or Page? Luckily there is a very simple way to do this&#8230; Instead of just using [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have a great plugin that you use all of the time, but wish you could put it in a very custom location, maybe on the index.php or footer.php page of your template, instead of just a Post or Page?</p>
<p>Luckily there is a very simple way to do this&#8230;</p>
<p>Instead of just using <strong>[your shortcode info]</strong>, you will want to go to your location of your template,<br />
and change it to <strong>&lt;?php echo do_shortcode( [your shortcode info] ) ?&gt;</strong></p>
<p>&nbsp;</p>
<p>Sounds easily enough, huh?</p>
<p>&nbsp;</p>
<p>Let&#8217;s look at an example I recently used was for the <a title="wpaudio WordPress Plugin" href="http://wordpress.org/extend/plugins/wpaudio-mp3-player/" target="_blank">wpaudio plugin</a>. I wanted to put near the bottom of just my index.php page, and not on any Post/Page within the site.</p>
<p>Step #1<br />
To keep it simple, I went to Add New Post, added a MP3 file using the standard <em>Upload/Insert</em> &gt;&gt; Add Audio icon, selected my MP3 file and said Insert Into Post.</p>
<p>The Post then had this piece of code:</p>
<blockquote><p>[audio mp3="http://domain.com/wp-content/uploads/2011/10/The-Sound-of-Awesomeness.mp3"  preload="true" autoplay="true"]</p></blockquote>
<p>Step #2<br />
So, I then copied this into Notepad, and slightly edited the code to look like this:</p>
<blockquote><p>&lt;?php echo do_shortcode(&#8216;[audio mp3="http://domain.com/wp-content/uploads/2011/10/The-Sound-of-Awesomeness.mp3"  preload="true" autoplay="true"]&#8216;); ?&gt;</p></blockquote>
<p>&nbsp;</p>
<p>Step #3<br />
I pasted this code into my index.php file, and was good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/inserting-shortcode-into-any-template/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://domain.com/wp-content/uploads/2011/10/The-Sound-of-Awesomeness.mp3" length="0" type="audio/mpeg" />
	<price></price>	</item>
		<item>
		<title>Removing the WordPress Admin Bar</title>
		<link>http://gatecitymedia.com/wordpress/removing-the-wordpress-admin-bar</link>
		<comments>http://gatecitymedia.com/wordpress/removing-the-wordpress-admin-bar#comments</comments>
		<pubDate>Mon, 01 Aug 2011 13:01:19 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=136</guid>
		<description><![CDATA[Starting in WordPress 3.X the new “Admin bar” has become a very useful feature, but if you don’t like it you can easily remove it. Just paste the following snippet into your functions.php file. &#160; add_filter('show_admin_bar', '__return_false');]]></description>
			<content:encoded><![CDATA[<p>Starting in WordPress 3.X the new “Admin bar” has become a very useful feature, but if you don’t like it you can easily remove it.</p>
<p>Just paste the following snippet into your <span style="color: #ff0000;"><code>functions.php</code></span> file.</p>
<hr />
<p>&nbsp;</p>
<pre>add_filter('show_admin_bar', '__return_false');</pre>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/removing-the-wordpress-admin-bar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Customizing WordPress Editor Font</title>
		<link>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font</link>
		<comments>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font#comments</comments>
		<pubDate>Mon, 25 Jul 2011 12:08:46 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=138</guid>
		<description><![CDATA[Wish you had control over the font used by WordPress editor? No problem, the following code will allow you to change it. Simply paste it to your theme functions.php file. You can define which font to use on line 5. add_action( 'admin_head-post.php', 'cwc_fix_html_editor_font' ); add_action( 'admin_head-post-new.php', 'cwc_fix_html_editor_font' ); function cwc_fix_html_editor_font() { ?&#62; &#60;style type="text/css"&#62;#editorcontainer #content, [...]]]></description>
			<content:encoded><![CDATA[<p>Wish you had control over the font used by WordPress editor?</p>
<p>No problem, the following code will allow you to change it. Simply paste it to your theme <span style="color: #ff0000;"><code>functions.php</code></span> file. You can define which font to use on <strong>line 5</strong>.</p>
<hr />
<pre>add_action( 'admin_head-post.php', 'cwc_fix_html_editor_font' );
add_action( 'admin_head-post-new.php', 'cwc_fix_html_editor_font' );

function cwc_fix_html_editor_font() { ?&gt;

&lt;style type="text/css"&gt;#editorcontainer #content, #wp_mce_fullscreen { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; }&lt;/style&gt;
&lt;?php }</pre>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/customizing-wordpress-editor-font/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Disable Your WordPress RSS Feed</title>
		<link>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed</link>
		<comments>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed#comments</comments>
		<pubDate>Tue, 19 Jul 2011 12:21:25 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=134</guid>
		<description><![CDATA[By default WordPress will include the popular RSS functionnality, which is great for most sites. But there are times when having RSS feeds may become a bit confusing for your visitors, so you can use this easy fix. This code will totally disable RSS feeds (As well as other formats) from your site. Just paste [...]]]></description>
			<content:encoded><![CDATA[<p>By default WordPress will include the popular RSS functionnality, which is great for most sites. But there are times when having RSS feeds may become a bit confusing for your visitors, so you can use this easy fix.</p>
<p>This code will totally disable RSS feeds (As well as other formats) from your site. Just paste the code into <span style="color: #ff0000;"><code>functions.php</code></span>, and you’re done.</p>
<pre></pre>
<hr />
<p><code><br />
function cwc_disable_feed() {<br />
wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );<br />
}<br />
add_action('do_feed', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rdf', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rss', 'cwc_disable_feed', 1);<br />
add_action('do_feed_rss2', 'cwc_disable_feed', 1);<br />
add_action('do_feed_atom', 'cwc_disable_feed', 1);<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/disable-your-wordpress-rss-feed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>USTA</title>
		<link>http://gatecitymedia.com/other/usta</link>
		<comments>http://gatecitymedia.com/other/usta#comments</comments>
		<pubDate>Tue, 05 Jul 2011 15:42:24 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=130</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="default_products_page_container" class="wrap wpsc_container">

	
			
			
					<div class="wpsc_category_details">
								
							</div><!--close wpsc_category_details-->
						
		
	
		<div class="wpsc_default_product_list">
									
			<div class="default_product_display product_view_129 usta group">   
				<h2 class="prodtitle entry-title">
							 
								<a class="wpsc_product_title" href="http://gatecitymedia.com/products-page/usta/usta-season">USTA Season</a>
													</h2>   
									<div class="imagecol" id="imagecol_129">
														<a href="http://gatecitymedia.com/products-page/usta/usta-season">
								<img class="no-image" id="product_image_129" alt="No Image" title="USTA Season" src="http://gatecitymedia.com/wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-images/noimage.png" width="96" height="96" />	
								</a>
													
					</div><!--close imagecol-->
									<div class="productcol">
					
						
						
												
						
						<div class="wpsc_description">
							<p>Online payment for USTA Season</p>
                        </div><!--close wpsc_description-->
				
												
																	
											
						<form class="product_form"  enctype="multipart/form-data" action="http://gatecitymedia.com/products-page/usta/usta-season" method="post" name="product_129" id="product_129" >
						                        													
							<!-- THIS IS THE QUANTITY OPTION MUST BE ENABLED FROM ADMIN SETTINGS -->
							
							<div class="wpsc_product_price">
																																			<p class="pricedisplay product_129">Old Price: <span class="oldprice" id="old_product_price_129"><span class='pricedisplay'> &#036;30.00</span></span></p>
																		<p class="pricedisplay product_129">Price: <span id='product_price_129' class="currentprice pricedisplay"> $25.00</span></p>
																			<p class="pricedisplay product_129">You save: <span class="yousave" id="yousave_129"><span class='pricedisplay'> &#036;5.00</span>! (16.67%)</span></p>
																		
									<!-- multi currency code -->
																		
																			<p class="pricedisplay">Shipping:<span class="pp_price"><span class='pricedisplay'> &#036;0.00</span></span></p>
																
															</div><!--close wpsc_product_price-->
							
							<input type="hidden" value="add_to_cart" name="wpsc_ajax_action"/>
							<input type="hidden" value="129" name="product_id"/>
					
							<!-- END OF QUANTITY OPTION -->
																								<div class="wpsc_buy_button_container">
										<div class="wpsc_loading_animation">
											<img title="Loading" alt="Loading" src="http://gatecitymedia.com/wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-images/indicator.gif" />
											Updating cart...										</div><!--close wpsc_loading_animation-->
																					<input type="submit" value="Add To Cart" name="Buy" class="wpsc_buy_button" id="product_129_submit_button"/>
																				</div><!--close wpsc_buy_button_container-->
																						<div class="entry-utility wpsc_product_utility">
															</div>
						</form><!--close product_form-->
						
												
												
						
									</div><!--close productcol-->
			<span class="sale">Sale</span>		</div><!--close default_product_display-->

						</div>
			     	

			</div><!--close default_products_page_container-->

]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/other/usta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Nivo Slider Fixed for IE</title>
		<link>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie</link>
		<comments>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie#comments</comments>
		<pubDate>Fri, 17 Jun 2011 17:04:08 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=114</guid>
		<description><![CDATA[Have you recently downloaded an ElegantThemes WordPress theme, or noticed your theme doesn&#8217;t work correctly with Internet Explorer (IE)? Recently our very own, Kevin Shoffner, reported the issue to Elegant Themes regarding their Chameleon theme and we wanted to share the fix with you until ET has resolved the issue. Go to the theme folder [...]]]></description>
			<content:encoded><![CDATA[<p>Have you recently downloaded an <a href="www.elegantthemes.com" target="_blank">ElegantThemes</a> WordPress theme, or noticed your theme doesn&#8217;t work correctly with Internet Explorer (IE)?</p>
<p>Recently our very own, Kevin Shoffner, reported the issue to Elegant Themes regarding their <a href="http://www.elegantthemes.com/preview/Chameleon/" target="_blank">Chameleon theme</a> and we wanted to share the fix with you until ET has resolved the issue.</p>
<p><span id="more-114"></span></p>
<p>Go to the theme folder directory and file <strong>/js/et_nivo.js</strong></p>
<p>Once there, you need to make sure all of the JavaScript variables are actually defined properly (put a <strong>var</strong> in front of them.)</p>
<p>Below is the entire FIXED <strong>et_nivo.js</strong> file that works:</p>
<div><strong>Code:</strong></div>
<blockquote>
<div>(function(){<br />
var $featured_content = jQuery(&#8216;#featured #slides&#8217;),<br />
et_featured_slider_auto = jQuery(&#8220;meta[name=et_featured_slider_auto]&#8220;).attr(&#8216;content&#8217;),<br />
et_featured_auto_speed = jQuery(&#8220;meta[name=et_featured_auto_speed]&#8220;).attr(&#8216;content&#8217;);if ( $featured_content.length ){<br />
var et_nivo_slider_options = {<br />
pauseTime: et_featured_auto_speed,<br />
pauseOnHover:true<br />
}<br />
if ( et_featured_slider_auto != 1 ) et_nivo_slider_options.manualAdvance = false;</p>
<p>$featured_content.nivoSlider(et_nivo_slider_options);<br />
}<br />
})();</p>
</div>
<p>So, basically &#8211; just make sure around line 2 ($featured_content) and line 7 (et_nivo_slider_options) has a &#8220;var &#8221; in front of them, upload again, and you should be Golden.</p></blockquote>
<p>&nbsp;</p>
<p><em>Update, 8/22/2011:  Elegant Themes has now updated their version, and this should no longer be a problem</em></p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/nivo-slider-fixed-for-ie/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<price></price>	</item>
		<item>
		<title>Connections WordPress to Facebook Fan Pages</title>
		<link>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages</link>
		<comments>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages#comments</comments>
		<pubDate>Tue, 14 Jun 2011 15:39:56 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[social media]]></category>
		<category><![CDATA[technical support]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=101</guid>
		<description><![CDATA[Lots of clients ask &#8211; &#8220;How can I get my WordPress Website Posts to Appear on my Facebook Fan Page?&#8221; With Facebook constantly changing, this may seem like an impossible effort &#8211; but once you have learned the Basics, you will be able to do it (as long as Facebook allows it.) Start by logging [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of clients ask &#8211; &#8220;How can I get my WordPress Website Posts to Appear on my Facebook Fan Page?&#8221;</p>
<p>With Facebook constantly changing, this may seem like an impossible effort &#8211; but once you have learned the Basics, you will be able to do it (as long as Facebook allows it.)</p>
<hr />
<p>Start by logging in as yourself on Facebook, and you will be logged in as yourself/individual.</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/1.jpg"><img class="size-full wp-image-102 alignnone" title="1" src="http://gatecitymedia.com/wp-content/uploads/2011/06/1.jpg" alt="" width="369" height="109" /></a></p>
<p>Next navigate to your Fan Page (I will be using the Gatecity Media Designs Fan Page in my example)</p>
<p>&nbsp;</p>
<p>Now click on “Use Facebook As <em>whatever your page is called</em>”</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/2.jpg"><img class="size-full wp-image-103 alignnone" title="2" src="http://gatecitymedia.com/wp-content/uploads/2011/06/2.jpg" alt="" width="265" height="266" /></a></p>
<p>&nbsp;</p>
<p>Once you click that, you are logged in as your Fan Page, instead of yourself.</p>
<p>Click on <strong><em>Edit Page</em></strong> button <a href="http://gatecitymedia.com/wp-content/uploads/2011/06/3.jpg"><img class="alignnone size-full wp-image-104" title="3" src="http://gatecitymedia.com/wp-content/uploads/2011/06/3.jpg" alt="" width="178" height="57" /></a></p>
<p>Then on <strong>APPS</strong> from the navigation</p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/4.jpg"><img class="alignnone size-full wp-image-105" title="4" src="http://gatecitymedia.com/wp-content/uploads/2011/06/4.jpg" alt="" width="196" height="234" /></a></p>
<p>&nbsp;</p>
<p>Click on “Go to App” for <strong>NOTES<a href="http://gatecitymedia.com/wp-content/uploads/2011/06/5.jpg"><img class="alignnone size-full wp-image-106" title="5" src="http://gatecitymedia.com/wp-content/uploads/2011/06/5.jpg" alt="" width="253" height="72" /></a> </strong></p>
<p>You should now be on your Fan Page’s <strong><em>Notes Page</em></strong>, so you want to scroll down and look on the left side of Facebook for something regarding <strong><em>Import Settings</em></strong></p>
<p><a href="http://gatecitymedia.com/wp-content/uploads/2011/06/6.jpg"><img class="alignnone size-full wp-image-107" title="6" src="http://gatecitymedia.com/wp-content/uploads/2011/06/6.jpg" alt="" width="198" height="239" /></a></p>
<p>Paste your Blog’s feed (RSS or XML), and with WordPress it is usually something like <a href="http://yourdomain.com/feed">http://yourdomain.com/feed</a> (ours is http://gatecitymedia.com/feed)</p>
<p>Once put in, you are go to go from then on.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><em>Check back from time to time, because these instructions may be adjusted if Facebook changes</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/connections-wordpress-to-facebook-fan-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Creating Custom Template Pages</title>
		<link>http://gatecitymedia.com/wordpress/creating-custom-template-pages</link>
		<comments>http://gatecitymedia.com/wordpress/creating-custom-template-pages#comments</comments>
		<pubDate>Mon, 14 Feb 2011 17:33:22 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[custom pages]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=90</guid>
		<description><![CDATA[Let&#8217;s say you wanted a WordPress page that did nothing more than show all POSTS under one Category in your WordPress site to be displayed on one page&#8230; How hard could that be?  Not too bad, actually. You will need to go to your FTP program, where your current theme is located, then duplicate the [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you wanted a WordPress page that did nothing more than show all POSTS under one Category in your WordPress site to be displayed on one page&#8230;</p>
<p>How hard could that be?  <em>Not too bad, actually.</em></p>
<ol>
<li>You will need to go to your FTP program, where your current theme is located, then duplicate the &#8220;page.php&#8221; and call it something like &#8220;category-list.php&#8221;</li>
<li>Now, go to your Editor within your WP Dashboard</li>
<li>From here you just need to put a little custom code in your newly created page</li>
<li>At the top of the file put the following (I usually put directly before seeing <strong>&lt;?php get_header(); ?&gt;</strong>:</li>
<blockquote>
<pre>&lt;?php
/*
Template Name: Category
*/
?&gt;</pre>
</blockquote>
<li>Now you need this code inside your new file, of course changing the &#8220;<strong>cat=</strong>&#8221; to whatever number the category you want it to be:</li>
<blockquote>
<pre>&lt;?php
query_posts('cat=1');
while (have_posts()) : the_post();
the_content();
endwhile;
?&gt;</pre>
</blockquote>
</ol>
<p>You will now be able to go to <strong>Pages >> Add New >></strong> and be able to select the Template &#8220;Category&#8221; as a template.  Give the Page a name, and you are good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/wordpress/creating-custom-template-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>How To Flush DNS</title>
		<link>http://gatecitymedia.com/technical-support/how-to-flush-dns</link>
		<comments>http://gatecitymedia.com/technical-support/how-to-flush-dns#comments</comments>
		<pubDate>Wed, 19 Jan 2011 12:07:24 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=80</guid>
		<description><![CDATA[Most DNS clients cache the results of name resolution requests. This means that the DNS clients will temporarily store the website names that you have been visiting lately. This process speeds up name resolution if multiple lookups are done to the same address, such as is common when browsing the web. So, if you visit [...]]]></description>
			<content:encoded><![CDATA[<p>Most DNS clients cache the results of name resolution requests. This means that the DNS clients will temporarily store the website names that you have been visiting lately. This process speeds up name resolution if multiple lookups are done to the same address, such as is common when browsing the web. So, if you visit Google.com the second time, the DNS client will already have the name mapped and hence will retrieve the mapping quickly.</p>
<p>Sometimes a bad DNS entry will be cached and you will need to either flush the DNS cache to get rid of it, or wait up to 24 hours &#8211; 2 weeks for it to be dropped from the cache automatically.</p>
<p>Given below is a comprehensive step-by-step process to flush the DNS.</p>
<h2>How to Flush DNS in Microsoft Windows</h2>
<p>In Microsoft Windows, you can use the command ipconfig /flushdns to flush the DNS resolver cache. Open the command prompt and type the following:</p>
<p><code>C:&gt;ipconfig /flushdns</code></p>
<blockquote><p>Windows IP Configuration<br />
Successfully flushed the DNS Resolver Cache.</p></blockquote>
<p>The above command will completely flush the DNS, deleting any incorrect entries too. You can also use the command ipconfig /displaydns to view the DNS resolver cache.</p>
<h2>Flush DNS in Mac OSX</h2>
<p>In Mac OSX Leopard, you can use the command <code>dscacheutil -flushcache</code> to flush the DNS resolver cache:</p>
<blockquote><p><code>bash-2.05a$ dscacheutil -flushcache</code></p></blockquote>
<p>In Mac OSX versions 10.5.1 and before, the command <code>lookupd -flushcache</code> performed the same task:</p>
<blockquote><p><code>bash-2.05a$ lookupd -flushcache</code></p></blockquote>
<h2>Flush DNS in Linux</h2>
<p>In Linux, the nscd daemon manages the DNS cache. To flush the DNS cache, restart the nscd daemon. To restart the nscd daemon, use the command <code>/etc/init.d/nscd restart`</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/technical-support/how-to-flush-dns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Clearing Browser Cache</title>
		<link>http://gatecitymedia.com/technical-support/clearing-browser-cache</link>
		<comments>http://gatecitymedia.com/technical-support/clearing-browser-cache#comments</comments>
		<pubDate>Fri, 14 Jan 2011 15:52:40 +0000</pubDate>
		<dc:creator>Gatecity Media Designs</dc:creator>
				<category><![CDATA[technical support]]></category>

		<guid isPermaLink="false">http://gatecitymedia.com/?p=72</guid>
		<description><![CDATA[How do I clear my web browser&#8217;s cache? Each time you access a file through your web browser, the browser caches it (stores it). In this way, the files (including any images on the page) do not have to be retrieved anew from the remote web site each time you click the Back or Forward [...]]]></description>
			<content:encoded><![CDATA[<h1>How do I clear my web browser&#8217;s cache?</h1>
<p>Each time you access a file through your web browser, the browser caches it (stores it). In this way, the files (including any images on the page) do not have to be retrieved anew from the remote web site each time you click the Back or Forward buttons. You should clear the cache if you expect to see changes on a website.</p>
<h2>Internet Explorer 8</h2>
<p>From the <code>Tools</code> menu, select <code>Delete Browsing History....</code><br />
Next to &#8220;Temporary Internet Files&#8221;, click Delete files&#8230;.<br />
Click Yes, and then click Close to exit.</p>
<blockquote><p><em><br />
I don&#8217;t see those options.<br />
</em><br />
From the Tools dropdown, select Internet Options.<br />
Under the General tab, locate &#8220;Browser history&#8221; and click Delete&#8230;.<br />
Check the box next to &#8220;Temporary Internet Files&#8221;.<br />
Click Delete, and then click OK to exit.</p></blockquote>
<hr />
<h2>Firefox 3 for Windows and Mac OS X</h2>
<p>In Firefox, from the Tools menu, select Clear Recent History&#8230;.<br />
Choose Everything from the drop-down and make sure Cache is checked, and then click Clear Now.</p>
<hr />
<h2>Safari</h2>
<p>From the Safari menu, select Empty Cache&#8230;.<br />
When prompted, click Empty to confirm that you want to empty the cache.</p>
<hr /><strong>Chrome</strong><br />
Click the wrench icon  on the right side next to the address bar, then click on Options&#8230; Clear Browsing Data&#8230;.<br />
When prompted, select only Cache and click Clear Browsing Data to finish.</p>
]]></content:encoded>
			<wfw:commentRss>http://gatecitymedia.com/technical-support/clearing-browser-cache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
	</channel>
</rss>

