<?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>GDS Computer Services &#187; website</title>
	<atom:link href="http://gdscomp.com/tag/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://gdscomp.com</link>
	<description>PC Tips and Tricks Blog, Free WordPress Themes and More...</description>
	<lastBuildDate>Tue, 08 May 2012 00:46:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>What is an htaccess file?</title>
		<link>http://gdscomp.com/2012/03/what-is-an-htaccess-file/</link>
		<comments>http://gdscomp.com/2012/03/what-is-an-htaccess-file/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 19:47:23 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=4629</guid>
		<description><![CDATA[An .htaccess file is an Apache Web Server file that is looked at by the server before it serves up your website.  It can be very useful for  things like blocking users with specific ip&#8217;s from visiting your site.  It&#8217;s a text file usually in the root directory of your website. WordPress creates it&#8217;s own [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft  wp-image-17" title="post-title-bg1" src="http://gdscomp.com/wp-content/uploads/2008/05/post-title-bg1.jpg" alt="" width="73" height="73" />An .htaccess file is an Apache Web Server file that is looked at by the server before it serves up your website.  It can be very useful for  things like blocking users with specific ip&#8217;s from visiting your site.  It&#8217;s a text file usually in the root directory of your website.</p>
<p>WordPress creates it&#8217;s own entries to the .htaccess file so if you decide to play around make sure you backup your original and don&#8217;t delete the WordPress entries.</p>
<p>Here&#8217;s some examples&#8230;</p>
<p>If you are tired of getting the same spam comments from a specific user over and over again you can ban the ip address like this by adding the following code to your .htaccess file:</p>
<h3> Create an IP Banlist</h3>
<blockquote><p>allow from all<br />
deny from 145.186.14.122<br />
deny from 124.15</p></blockquote>
<h3><span id="more-4629"></span>Prevent Hotlinking</h3>
<p>Tired of people using your bandwidth by putting the images hosted on your server on their website? Add the following code at the bottom of your .htaccess file to prevent hotlinking.</p>
<blockquote><p>Options +FollowSymlinks<br />
#Protect against hotlinking<br />
RewriteEngine On<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www.)?domainname.com/ [nc]<br />
RewriteRule .*.(gif|jpg|png)$ http://domainname.com/img/stop_stealing_bandwidth.gif[nc]</p></blockquote>
<p>NOTE: The following article explains better methods to &#8220;prevent&#8221; hotlinking:<br />
<a href="http://www.polepositionmarketing.com/seo-sem/link-building-secrets/maurizio-petrone.php" target="_blank">Link building secrets by Maurizio Petrone</a></p>
<h3>Block All Requests From User Agents</h3>
<p>It&#8217;s possible to block all unwanted user agents that might be potentially harmful or perhaps just to keep the server load as low as possible.</p>
<blockquote><p>#Block bad bots<br />
SetEnvIfNoCase user-Agent ^FrontPage [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Java.* [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Microsoft.URL [NC,OR]<br />
SetEnvIfNoCase user-Agent ^MSFrontPage [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Offline.Explorer [NC,OR]<br />
SetEnvIfNoCase user-Agent ^[Ww]eb[Bb]andit [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Zeus [NC]<br />
Order Allow,Deny<br />
Allow from all<br />
Deny from env=bad_bot</p></blockquote>
<h3>Redirect Everyone Except Specified IPs</h3>
<p>If for some reason you would want to deny everyone or allow only a specific group of IP addresses to access your website, add the following code to your .htaccess file:</p>
<blockquote><p>ErrorDocument 403 http://www.domainname.com<br />
Order deny,allow<br />
Deny from all<br />
Allow from 124.34.48.165<br />
Allow from 102.54.68.123</p></blockquote>
<h3>SEO Friendly 301 Redirects</h3>
<p>If you&#8217;ve transferred domain names or wish to redirect a specific page or pages without getting penalty from search engines such as Google, use the following code:</p>
<blockquote><p>Redirect 301 /d/file.html http://www.domainname.com/r/file.html</p></blockquote>
<h3>Creating a Custom Error Page</h3>
<p>Are you as tired as me of the default layout of 404 error pages? Well now you can easily create your own and refer to it like this:</p>
<blockquote><p>ErrorDocument 401 /error/401.php<br />
ErrorDocument 403 /error/403.php<br />
ErrorDocument 404 /error/404.php<br />
ErrorDocument 500 /error/500.php</p></blockquote>
<h3>Set Default Email Address For Server Admin</h3>
<p>Using the following code you can specify the default email address for the server&#8217;s admin.</p>
<blockquote><p>ServerSignature EMail<br />
SetEnv SERVER_ADMIN default@domain.com</p></blockquote>
<h3>Disable Display of Download Request</h3>
<p>Usually when downloading something from a web site, you&#8217;ll be prompted if you wish to open the file or save it on your hard-disk. To prevent the server from prompting users wether they wish to open or save the file and to just save the file, use the following code:</p>
<blockquote><p>AddType application/octet-stream .pdf<br />
AddType application/octet-stream .zip<br />
AddType application/octet-stream .mov</p></blockquote>
<p>Found this and other useful web development info here:</p>
<p><a href="http://devmoose.com/" target="_blank">http://devmoose.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2012/03/what-is-an-htaccess-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting Your WordPress Site</title>
		<link>http://gdscomp.com/2012/03/hosting-your-wordpress-site/</link>
		<comments>http://gdscomp.com/2012/03/hosting-your-wordpress-site/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 21:03:18 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=4539</guid>
		<description><![CDATA[Hosting your WordPress website is a little more involved then hosting say a 10 page static site.  Your WordPress site has a bigger need for Server Resources so it can &#8220;run&#8221; your site and not just &#8220;display&#8221; it.  WordPress is an engine of sorts that serves up data from a database so before your page [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-20" style="border: 0pt none; margin: 1px 10px;" title="GDS Pro Hosting" src="http://gdscomp.com/wp-content/uploads/2008/05/banner_hosting1b.jpg" alt="" width="96" height="97" />Hosting your WordPress website is a little more involved then hosting say a 10 page static site.  Your WordPress site has a bigger need for Server Resources so it can &#8220;run&#8221; your site and not just &#8220;display&#8221; it.  WordPress is an engine of sorts that serves up data from a database so before your page is displayed in a browser it makes many calls to your database which in turn puts a load on the server.  Even a host that claims unlimited everything will hold you to a certain level of CPU usage.  So if your WordPress Site has become a popular site with heavy usage this is what you might need.  A semi-dedicated hosting platform with high CPU usage limits.  Along with many other standard hosting plans GDS offers this for your high usage needs.  <a href="http://www.gdshosting.com/?lang=en&amp;action=semi-dedicated-hosting" target="_blank">GDS High End Pro Hosting</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2012/03/hosting-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Design Tips</title>
		<link>http://gdscomp.com/2012/01/website-design-tips/</link>
		<comments>http://gdscomp.com/2012/01/website-design-tips/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 00:36:28 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=4413</guid>
		<description><![CDATA[Give them what they are looking for right on your front page.  Some visitor that come to your website will stop at the Home Page unless you give them the reason to click farther.  If you have a Blog Home page make sure your list of  &#8220;Posts&#8221; are on your sidebar and the list should [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-4415" title="site design" src="http://gdscomp.com/wp-content/uploads/2012/01/site.png" alt="" width="211" height="203" />Give them what they are looking for right on your front page.  Some visitor that come to your website will stop at the Home Page unless you give them the reason to click farther.  If you have a Blog Home page make sure your list of  &#8220;Posts&#8221; are on your sidebar and the list should show more than the number of articles displayed on your front page.  If you display 5 articles on your front page then list 10 or more.  Also Categories and Tags are good to display in the sudebar so visitors can sort articles by Category and Tags or Keywords.  If your site is setup with a fixed front page rather than a blog page then make sure you have easy to see links to the other pages that you want people to view.  Make sure its right in front of their eyes and make sure your most important things are towards the top.</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2012/01/website-design-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have Your Own Online Magazine</title>
		<link>http://gdscomp.com/2011/10/have-your-own-online-magazine/</link>
		<comments>http://gdscomp.com/2011/10/have-your-own-online-magazine/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 20:29:45 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3900</guid>
		<description><![CDATA[How would you like to have your own Online Magazine or news site.  You can have one for your community, your family, your club or even your business.  You can have different contributors or authors and post news, information and other articles to attract and entertain visitors. You can have different sections with similar topics, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-3903" style="border: 0pt none; margin: 1px 10px;" title="bobbrowne.com" src="http://gdscomp.com/wp-content/uploads/2011/10/bobbrowne1-300x267.jpg" alt="" width="253" height="225" />How would you like to have your own Online Magazine or news site.  You can have one for your community, your family, your club or even your business.  You can have different contributors or authors and post news, information and other articles to attract and entertain visitors. You can have different sections with similar topics, photos, videos, polls, slideshows and more.   With WordPress we can make this happen for you and its not that difficult to maintain and keep updated.  Contact us today and we&#8217;ll get you online in no time at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/10/have-your-own-online-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Different Widgets for different sections.</title>
		<link>http://gdscomp.com/2011/09/different-widgets-for-different-sections/</link>
		<comments>http://gdscomp.com/2011/09/different-widgets-for-different-sections/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 17:13:44 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3705</guid>
		<description><![CDATA[Using the Widget Context Plugin Giving your WordPress website different different sidebar widgets for different sections is easy enough to do using a plugin called &#8220;Widget Context&#8220;.  Once you install this plugin you get some extra functionality in your dashboard&#8217;s widget menu.  When you put any widget into your sidebar you can choose what sections [...]]]></description>
			<content:encoded><![CDATA[<h2>Using the Widget Context Plugin</h2>
<p>Giving your WordPress website different different sidebar widgets for different sections is easy enough to do using a plugin called &#8220;<a href="http://konstruktors.com/projects/wordpress-plugins/widget-context/" target="_blank">Widget Context</a>&#8220;.  Once you install this plugin you get some extra functionality in your dashboard&#8217;s widget menu.  When you put any widget into your sidebar you can choose what sections of you website this widget will show up on.  It can be displayed on your home page, blog page, single posts, single pages, search page, archive page and more.  <a href="http://gdscomp.com/wp-content/uploads/2011/09/widgetcontext.png"><img class="alignnone size-full wp-image-3706" title="Widget Context plugin for WordPress" src="http://gdscomp.com/wp-content/uploads/2011/09/widgetcontext.png" alt="" width="473" height="209" /></a></p>
<p>You can also use negative logic and hide that particular widget from certain sections.  Whatever works best for your design.  Here&#8217;s a look at the functionality block that gets added to your widget settings.  Just select where you want or don&#8217;t want that widget displayed, save, and your all set.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/09/different-widgets-for-different-sections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Now Powering 14.7 Percent of Top Global Websites</title>
		<link>http://gdscomp.com/2011/08/14-7-percent-of-top-global-websites-are-wordpress/</link>
		<comments>http://gdscomp.com/2011/08/14-7-percent-of-top-global-websites-are-wordpress/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 00:56:19 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3697</guid>
		<description><![CDATA[WordPress continues to grow in popularity as more and more people are using it to create full featured websites that you control yourself. WordPress is not just a blog machine. It is a complete CMS that is highly configurable so it can be any kind of website, complete with SEO abilities, RSS feeds and all [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-3698" title="logo_500x500" src="http://gdscomp.com/wp-content/uploads/2011/08/logo_500x500-150x150.png" alt="" width="150" height="150" />WordPress continues to grow in popularity as more and more people are using it to create full featured websites that you control yourself. WordPress is not just a blog machine. It is a complete CMS that is highly configurable so it can be any kind of website, complete with SEO abilities, RSS feeds and all kinds of other built in functionality.</p>
<p>Blog, Content portal, Business website, Corporate website, Performers websites, Clubs, Schools, Lawyers, they can all have very nice looking and interactive sites. Even online store fronts.  Contact me and we can get your WordPress Website online tomorrow.  We design, host and support you all the way.</p>
<p><a href="http://www.cmswire.com/cms/web-cms/wordpress-is-powering-147-percent-of-top-global-websites-012492.php" target="_blank">14.7 Percent of Top Global Websites are WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/08/14-7-percent-of-top-global-websites-are-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Blog 2011 Theme</title>
		<link>http://gdscomp.com/2011/08/show-blog-2011-theme/</link>
		<comments>http://gdscomp.com/2011/08/show-blog-2011-theme/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 00:32:20 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3669</guid>
		<description><![CDATA[Another Free Music Theme for your new website.  Theme intended for musicians or concert goers but can be used for anything you&#8217;d like. Theme Features include: Custom Vertical Menu Block Widget Support for footer and content areas Footer content area Pages can be hidden from menu bar Titles can be hidden from pages 5  advertisement [...]]]></description>
			<content:encoded><![CDATA[<p>Another Free Music Theme for your new website.  Theme intended for musicians or concert goers but can be used for anything you&#8217;d like.</p>
<p><img class="alignnone size-full wp-image-3670" title="Show Blog WordPress Theme 2011" src="http://gdscomp.com/wp-content/uploads/2011/08/concert-2011.png" alt="" width="481" height="353" /></p>
<p>Theme Features include:</p>
<ul>
<li>Custom Vertical Menu Block</li>
<li>Widget Support for footer and content areas</li>
<li>Footer content area</li>
<li>Pages can be hidden from menu bar</li>
<li>Titles can be hidden from pages</li>
<li>5  advertisement short-codes</li>
<li>Full sheet page template to have pages with no sidebars</li>
</ul>
<p>Download <a class="downloadlink" href="http://gdscomp.com/wp-content/plugins/download-monitor/download.php?id=79" title=" downloaded 56 times" >Show Blog 2011 (56)</a> and create your ownn website today.</p>
<p><span id="more-3669"></span></p>
<table border="0" cellspacing="2" cellpadding="10" align="center">
<tbody>
<tr>
<td>If you use this or one of my other free themes and you would like to make a contribution to the cause, click the button!!</td>
<td>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="Q55THDF8284V2" />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="PayPal - The safer, easier way to pay online!" /> <img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/08/show-blog-2011-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New WordPress Website Theme</title>
		<link>http://gdscomp.com/2011/08/new-wordpress-website-theme-2/</link>
		<comments>http://gdscomp.com/2011/08/new-wordpress-website-theme-2/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 04:53:01 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3658</guid>
		<description><![CDATA[This Free Theme features 3 columns with content to the left, a wide column in the middle suitable for a list of articles or custom menu links, narrow column to the right for your blog menus.  Using the custom menu feature and the custom verticle menu block(s) you can display your content in many different [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-3659 alignnone" title="wp-website 02" src="http://gdscomp.com/wp-content/uploads/2011/08/wp-website02.png" alt="" width="476" height="386" /></p>
<p>This Free Theme features 3 columns with content to the left, a wide column in the middle suitable for a list of articles or custom menu links, narrow column to the right for your blog menus.  Using the custom menu feature and the custom verticle menu block(s) you can display your content in many different ways with this theme.  Other built in features include, your footer text, footer widgets, top and bottom content widgets, page hiding, title hiding, comment hiding, ad shortcodes and more.</p>
<p>Download <a class="downloadlink" href="http://gdscomp.com/wp-content/plugins/download-monitor/download.php?id=78" title="Version2 downloaded 38 times" >WP Website 2011 II (38)</a></p>
<p>Here&#8217;s some more screen shots&#8230;</p>
<p><span id="more-3658"></span></p>
<p><img class="alignnone size-full wp-image-3662" title="wp-website02b" src="http://gdscomp.com/wp-content/uploads/2011/08/wp-website02b.png" alt="" width="476" height="373" /></p>
<p>Full width page template available when publishing a Page.</p>
<p><img class="alignnone size-full wp-image-3663" title="wp-website02c" src="http://gdscomp.com/wp-content/uploads/2011/08/wp-website02c.png" alt="" width="476" height="519" /></p>
<p>Clean Blog page for a professional look to your complete website.  I would be glad to help you with customizing this theme with your logo and or colors or feel free to use it as it is.  It is fully functional and would make a terrific website as it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/08/new-wordpress-website-theme-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2.1 Already!</title>
		<link>http://gdscomp.com/2011/07/wordpress-3-2-1-already/</link>
		<comments>http://gdscomp.com/2011/07/wordpress-3-2-1-already/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 04:39:29 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3617</guid>
		<description><![CDATA[A WordPress maintenance upgrade was released today taking us to version 3.2.1 and is available in your dashboard.  You can upgrade easily and automatically. If you haven&#8217;t upgraded to version 3.2 yet make sure your host is running php version 5 as this is now required by WordPress. You can get the Health Check plugin  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3456" style="border: 0pt none; margin: 1px 10px;" title="WordPress - GDScomp" src="http://gdscomp.com/wp-content/uploads/2010/12/wordpressicon-hanttula2.gif" alt="" width="80" height="80" />A WordPress maintenance upgrade was released today taking us to version 3.2.1 and is available in your dashboard.  You can upgrade easily and automatically.</p>
<p>If you haven&#8217;t upgraded to version 3.2 yet make sure your host is running php version 5 as this is now required by WordPress. You can get the Health Check plugin  ( wordpress.org/extend/plugins/health-check ) and check your install.  This will show you the exact version you are running.</p>
<p>You can also download this file,  <a href="http://gdscomp.com/wp-content/uploads/2011/07/testphp.zip">testphp.zip</a>  Unzip it and extract the file called test.php which you can ftp/upload to the root directory of your website.  Then in your browser enter www.yourdomain.com/test.php.  You get a page of info about the version and settings of the php system on the server you are using.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/07/wordpress-3-2-1-already/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Screen WP Theme</title>
		<link>http://gdscomp.com/2011/05/free-full-screen-wordpress-theme/</link>
		<comments>http://gdscomp.com/2011/05/free-full-screen-wordpress-theme/#comments</comments>
		<pubDate>Sun, 29 May 2011 15:37:39 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3544</guid>
		<description><![CDATA[Full Screen Green A Free WordPress Theme for your full screen blog or website.  Have LOTS of content??  Maybe this full screen width theme will give you what you are looking for. Single Left Side Sidebar, Simple Green Header,  Horizontal menu with drop downs for sub pages, Vertical menu for categories or your custom menus, [...]]]></description>
			<content:encoded><![CDATA[<p>Full Screen Green</p>
<p><img class="size-full wp-image-3545 alignleft" style="border: 0pt none; margin: 0px 10px;" title="Full Screen Green WordPress Theme" src="http://gdscomp.com/wp-content/uploads/2011/05/screenshot.png" alt="" width="300" height="225" />A Free WordPress Theme for your full screen blog or website.  Have LOTS of content??  Maybe this full screen width theme will give you what you are looking for.</p>
<p>Single Left Side Sidebar, Simple Green Header,  Horizontal menu with drop downs for sub pages, Vertical menu for categories or your custom menus, Theme option page in the dashboard.  Other options include: customizable footer, auto ad insert, page title display, include page in menu and more.</p>
<p>Download <a class="downloadlink" href="http://gdscomp.com/wp-content/plugins/download-monitor/download.php?id=74" title="Version1.0 downloaded 82 times" >Full Screen Green (82)</a></p>
<table border="0" cellspacing="2" cellpadding="10" align="center">
<tbody>
<tr>
<td>If you use this or one of my other free themes and you would like to make a contribution to the cause, click the button!!</td>
<td>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="Q55THDF8284V2" />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="PayPal - The safer, easier way to pay online!" /> <img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/05/free-full-screen-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have you updated to WordPress 3.1.1?</title>
		<link>http://gdscomp.com/2011/04/have-you-updated-to-wordpress-3-1-1/</link>
		<comments>http://gdscomp.com/2011/04/have-you-updated-to-wordpress-3-1-1/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 17:12:18 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3496</guid>
		<description><![CDATA[In case you didn&#8217;t know WordPress 3.1.1 is available now and you should upgrade to this most current version.  This update to the recently released version 3.1 addresses security and performance issues. Read all about the latest version here! http://wordpress.org/news/2011/04/wordpress-3-1-1/ &#160;]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2265" title="WordPress" src="http://gdscomp.com/wp-content/uploads/2009/01/wplogo2.gif" alt="" width="109" height="109" />In case you didn&#8217;t know WordPress 3.1.1 is available now and you should upgrade to this most current version.  This update to the recently released version 3.1 addresses security and performance issues.</p>
<p>Read all about the latest version here!</p>
<p><a href="http://wordpress.org/news/2011/04/wordpress-3-1-1/" target="_blank">http://wordpress.org/news/2011/04/wordpress-3-1-1/</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/04/have-you-updated-to-wordpress-3-1-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 3.1 is here!</title>
		<link>http://gdscomp.com/2011/02/wordpress-3-1-is-here/</link>
		<comments>http://gdscomp.com/2011/02/wordpress-3-1-is-here/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 19:20:04 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3479</guid>
		<description><![CDATA[With the new 3.1 release, WordPress is more of a CMS than ever before. The only limit to what you can build is your imagination.﻿ Upgrade to the new WordPress 3.1 automatically from your dashboard or head on over to WordPress.org and download the latest package to install manually.  Stay up to date with the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3456" style="border: 0px solid black; margin: 0px 10px;" title="WordPress - GDScomp" src="http://gdscomp.com/wp-content/uploads/2010/12/wordpressicon-hanttula2.gif" alt="" width="80" height="80" />With the new 3.1 release, <strong>WordPress is more of a CMS than ever before</strong>. The only limit to what you can build is your imagination.﻿</p>
<p>Upgrade to the new <a href="http://wordpress.org/news/2011/02/threeone/" target="_blank">WordPress 3.1</a> automatically from your dashboard or head on over to <a href="http://wordpress.org/" target="_blank">WordPress.org</a> and download the latest package to install manually.  Stay up to date with the newest features and core enhancements for speed and security.</p>
<p>Upgrade today!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2011/02/wordpress-3-1-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Critical WordPress Update</title>
		<link>http://gdscomp.com/2010/12/critical-wordpress-update/</link>
		<comments>http://gdscomp.com/2010/12/critical-wordpress-update/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 20:48:56 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3452</guid>
		<description><![CDATA[An update is available for WordPress and it&#8217;s considered a critical one that deals with security issues.  We recommend that you update immediately either automatically from your dashboard or download the updated package from wordpress.org and install it manually.  Update to version 3.0.4 now!]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-3456 alignleft" style="border: 0pt none; margin: 0px 10px;" title="WordPress - GDScomp" src="http://gdscomp.com/wp-content/uploads/2010/12/wordpressicon-hanttula2.gif" alt="" width="52" height="52" />An update is available for WordPress and it&#8217;s considered a critical one that deals with security issues.  We recommend that you update immediately either automatically from your dashboard or download the updated package from <a href="http://wordpress.org" target="_blank">wordpress.org</a> and install it manually.  <a href="http://wordpress.org/news/2010/12/3-0-4-update/" target="_blank">Update to version 3.0.4 now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2010/12/critical-wordpress-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Security Update</title>
		<link>http://gdscomp.com/2010/12/wordpress-security-update/</link>
		<comments>http://gdscomp.com/2010/12/wordpress-security-update/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 16:13:55 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3435</guid>
		<description><![CDATA[An update to WordPress bringing it to version 3.0.2 is available now  and you should update your WordPress websites.  This is a security update that fixes an exploit vulnerability.  This is considered a mandatory update so do it as soon as possible. http://wordpress.org/news/2010/11/wordpress-3-0-2/]]></description>
			<content:encoded><![CDATA[<p>An update to WordPress bringing it to version 3.0.2 is available now  and you should update your WordPress websites.  This is a security update that fixes an exploit vulnerability.  This is considered a mandatory update so do it as soon as possible.</p>
<p><a href="http://wordpress.org/news/2010/11/wordpress-3-0-2/" target="_blank">http://wordpress.org/news/2010/11/wordpress-3-0-2/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2010/12/wordpress-security-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress wins 2010 Open Source Award</title>
		<link>http://gdscomp.com/2010/11/wordpress-wins-2010-open-source-award/</link>
		<comments>http://gdscomp.com/2010/11/wordpress-wins-2010-open-source-award/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 03:39:20 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://gdscomp.com/?p=3428</guid>
		<description><![CDATA[WordPress has been awarded the 2010 Open Source Award for being the the best CMS platform available.  The three winners were WordPress, Drupal and Joomla.   It was close but WordPress came out on top.  Congratulations to the WordPress team and Thanks for your continued efforts. http://www.packtpub.com/open-source-awards-home]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2265" title="WordPress" src="http://gdscomp.com/wp-content/uploads/2009/01/wplogo2.gif" alt="" width="108" height="108" />WordPress has been awarded the 2010 Open Source Award for being the the best CMS platform available.  The three winners were WordPress, Drupal and Joomla.   It was close but WordPress came out on top.  Congratulations to the WordPress team and Thanks for your continued efforts.</p>
<p><a href="http://www.packtpub.com/open-source-awards-home" target="_blank">http://www.packtpub.com/open-source-awards-home</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gdscomp.com/2010/11/wordpress-wins-2010-open-source-award/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

