<?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>Computer support articles &#187; Internet</title>
	<atom:link href="http://www.mycomputeraid.com/category/computers/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mycomputeraid.com</link>
	<description>Free computer support, articles and Guides</description>
	<lastBuildDate>Sat, 18 Sep 2010 03:46:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Howto optimize wordpress</title>
		<link>http://www.mycomputeraid.com/computers/internet/howto-optimize-wordpress/</link>
		<comments>http://www.mycomputeraid.com/computers/internet/howto-optimize-wordpress/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 03:44:34 +0000</pubDate>
		<dc:creator>MyComputerAid</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.mycomputeraid.com/?p=908</guid>
		<description><![CDATA[WordPress is one of the great wonders of free software, an unlimited number of features and plugins that will keep anyone happy.  With a zillion developers working on this thing it must be the best most optimized software in the world right? .. Unfortunately that is not the case.  there are a few issues with [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the great wonders of free software, an unlimited number of features and plugins that will keep anyone happy.  With a zillion developers working on this thing it must be the best most optimized software in the world right? .. Unfortunately that is not the case.  there are a few issues with wordpress that unless you are running a really low traffic site on some decent hardware you are going to start seeing performance issues with page loads and general just crashing your site (with us on a Xeon system it happened around 5000 Uniques a day).  So what is the problem with wordpress? we will cover the three big ones:</p>
<p>1) Because there is no body managing the plugin development basically any dog and their cat can write a plugin and have it published on the wordpress site and just because this person can write a plugin.. doesnt mean it is good.</p>
<p>2) WordPress is ultra ultra ultra (did I put enough ultras in there yet?) Database intensive.. every little thing it does it needs to query the database.. soemtimes I wonder.. did this really need a database call?  In total one one of my sites having 34 plugins and a customized template we where doing over 500 DB queries on some page loads (sometimes more)</p>
<p>3) WordPress takes up a huge amount of memory per page load do you want to know how taxing wordpress is on your system? download the <a href="http://www.code-styling.de/english/development/wordpress-plugin-wp-system-health-en">WordPress system health</a> plugin to find out,  I was 10001% amazed when I found out that Rendering Dashboard (index.php) was taking up almost 50MB worth of memory.</p>
<p>So what can we do about all this? Lucky enough for the readers at this site I am willing to share my knowledge of how we saved one of our websites from constantly crashing our server with as little as 5000 uniques a day (really thats not that many hits to be crashing servers).</p>
<p><strong>Caching</strong></p>
<p>Basically caching is going to be one of your saviors in optimizing your wordpress.  there are quite a few wordpress caching products out there but I tend to stick to the true and blue ones that have worked for me all this time:</p>
<p><a href="http://wordpress.org/extend/plugins/wp-super-cache/">﻿wp-super-cache</a>: Basic settings are fine, make sure you use the ON feature and check the boxes for &#8220;Don’t cache pages for logged in users.&#8221; and &#8220;Cache Rebuild&#8221;<br />
<a href="http://wordpress.org/extend/plugins/wp-widget-cache/">wp-widget-cache</a>: Yes Widgets also need to be cached,  nothing special here but I generally use the auto expire checkbox.<br />
<a href="http://wordpress.org/extend/plugins/db-cache-reloaded/">db cache reloaded</a>: I expire my DB cache every 5 minutes but if you have a pretty low traffic site you can probably cache for longer.</p>
<p><strong>PHP Optimization</strong></p>
<p>If you are the admin of your own server I suggest installing a PHP optimizer/accelerator such as<a href="http://www.zend.com/"> Zend</a> or <a href="http://pecl.php.net/package/APC">APC</a>.  I had much better luck with APC then I did with Zend and it took my page loads from close to 50MB to 15MB, thats a huge optimization.  Im not really going to show you how to install APC here but if I have time tonight ill write another quick article on howto install it on Linux Centos.</p>
<p><strong>Your template code</strong></p>
<p>If you are a coder or know your way around html pretty good you can help your wordpress by going through your teplate code and taking out anything that is doing a database query that doesnt need to, a prime example of this is the header.php file:</p>
<p>&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;&lt;?php bloginfo(&#8216;html_type&#8217;); ?&gt;; charset=&lt;?php bloginfo(&#8216;charset&#8217;); ?&gt;&#8221; /&gt;</p>
<p>this can be just a static line like this:</p>
<p>&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=UTF-8&#8243; /&gt;</p>
<p><strong>More Admin stuff: Optimizing Apache</strong></p>
<p>I have found this apache configuration to be the most optimal for my server, im not going to go into much detail here but basically edit your httpd.conf file if you have admin rights to your server:</p>
<p>KeepAlive On<br />
MaxKeepAliveRequests 200<br />
KeepAliveTimeout 5</p>
<p>&lt;IfModule prefork.c&gt;<br />
StartServers      50<br />
MinSpareServers   15<br />
MaxSpareServers   30<br />
#ServerLimit      512<br />
MaxClients       256<br />
MaxRequestsPerChild  0<br />
&lt;/IfModule&gt;</p>
<p>&lt;IfModule worker.c&gt;<br />
StartServers        20<br />
MaxClients          256<br />
MinSpareThreads     25<br />
MaxSpareThreads     75<br />
ThreadsPerChild     25<br />
MaxRequestsPerChild  0<br />
&lt;/IfModule&gt;</p>
<p>Comment out some modules in Apache if you are not using them:</p>
<p>#LoadModule ext_filter_module modules/mod_ext_filter.so<br />
#LoadModule expires_module modules/mod_expires.so<br />
#LoadModule headers_module modules/mod_headers.so<br />
#LoadModule usertrack_module modules/mod_usertrack.so<br />
#LoadModule dav_module modules/mod_dav.so<br />
#LoadModule status_module modules/mod_status.so<br />
#LoadModule info_module modules/mod_info.so<br />
#LoadModule dav_fs_module modules/mod_dav_fs.so<br />
#LoadModule speling_module modules/mod_speling.so<br />
#LoadModule userdir_module modules/mod_userdir.so<br />
#LoadModule proxy_module modules/mod_proxy.so<br />
#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so<br />
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so<br />
#LoadModule proxy_http_module modules/mod_proxy_http.so<br />
#LoadModule proxy_connect_module modules/mod_proxy_connect.so<br />
#LoadModule cache_module modules/mod_cache.so<br />
#LoadModule disk_cache_module modules/mod_disk_cache.so<br />
#LoadModule file_cache_module modules/mod_file_cache.so<br />
#LoadModule mem_cache_module modules/mod_mem_cache.so<br />
#LoadModule version_module modules/mod_version.so</p>
<p><strong>Optimizing MySQL</strong></p>
<p>log-slow-queries = /var/log/mysql-slow.log<br />
long_query_time = 1</p>
<p>key_buffer = 256M<br />
max_allowed_packet = 1M<br />
join_buffer_size = 4M<br />
sort_buffer_size = 16M<br />
net_buffer_length = 8K<br />
read_buffer_size = 4M<br />
read_rnd_buffer_size = 4M<br />
myisam_sort_buffer_size = 16M</p>
<p>max_connections = 250<br />
max_user_connections = 128<br />
table_cache = 256<br />
tmp_table_size = 32M<br />
max_tmp_tables = 128</p>
<p>thread_cache = 40<br />
query_cache_type = 1<br />
query_cache_size = 32M<br />
query_cache_limit = 2M<br />
thread_concurrency = 8<br />
thread_cache_size = 8
<p><i>Article written by <a href="http://www.mycomputeraid.com">MyComputerAid.com</a></i></p>
<p class="a2a_link">
<a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Computer%20support%20articles&amp;siteurl=http%3A%2F%2Fwww.mycomputeraid.com%2F&amp;linkname=Howto%20optimize%20wordpress&amp;linkurl=http%3A%2F%2Fwww.mycomputeraid.com%2Fcomputers%2Finternet%2Fhowto-optimize-wordpress%2F">
	<img  src= "http://www.mycomputeraid.com/wp-content/plugins/add-to-any/bookmark.gif"  width= "91"  height= "16"  border= "0"  alt= "Bookmark title="bookmark image" />
</a>
<script type="text/javascript">a2a_linkname="Howto optimize wordpress";a2a_linkurl="http://www.mycomputeraid.com/computers/internet/howto-optimize-wordpress/";</script>
<script type="text/javascript" src="http://www.addtoany.com/js.dropdown.js?type=page"></script>

</p><p>Post from: <a href="http://www.mycomputeraid.com">MyComputerAid.com Computer support</a></p>
<p><a href="http://www.mycomputeraid.com/computers/internet/howto-optimize-wordpress/">Howto optimize wordpress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mycomputeraid.com/computers/internet/howto-optimize-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto secure wordpress</title>
		<link>http://www.mycomputeraid.com/computers/internet/howto-secure-wordpress/</link>
		<comments>http://www.mycomputeraid.com/computers/internet/howto-secure-wordpress/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 03:07:27 +0000</pubDate>
		<dc:creator>MyComputerAid</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress security]]></category>
		<category><![CDATA[wordpress upgrade]]></category>

		<guid isPermaLink="false">http://www.mycomputeraid.com/?p=906</guid>
		<description><![CDATA[We all know how secure wordpress is out of the box and if you miss a patch then .. well your just asking for big trouble.   Generally upgrading your wordpress to the latest release will keep out 99% of the hackers and bots out there scouring the web for insecure wordpress sites (and believe me [...]]]></description>
			<content:encoded><![CDATA[<p>We all know how secure wordpress is out of the box and if you miss a patch then .. well your just asking for big trouble.   Generally <a href="http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/">upgrading your wordpress</a> to the latest release will keep out 99% of the hackers and bots out there scouring the web for insecure wordpress sites (and believe me there are a lot).  There are a few plugins out there that I use to help secure wordpress, there are more so this is not the be all end all but it will help.</p>
<p><a href="http://wordpress.org/extend/plugins/secure-wordpress/">Secure WordPress:</a> This is a great plugin although some of the features dont work (such as the scan feature).  It will secure many parts of your wordpress including removing wordpress versions, putting index files in directories and blocks bad hacker queries.  Basically a must have for wordpress installs.</p>
<p><a href="http://downloads.wordpress.org/plugin/admin-protector.zip ">Admin Protector:</a> this plugin basically puts a .htaccess type login box on your wp-admin, if you dont have users or multiple authors this plugin is very useful.</p>
<p><a href="http://downloads.wordpress.org/plugin/admin-ssl-secure-admin.1.4.1.zip">Admin SSL:</a> This plugin will redirect your wp-admin to https:// if you dont have an ssl certificate then this plugin probably wont help you.</p>
<p><a href="http://downloads.wordpress.org/plugin/wordpress-file-monitor.2.3.3.zip ">WordPress File Monitor:</a> This tool is really great for monitoring what files are changing in your wordpress, its always a good indicator if your have been compromised if a file in your wordpress changes that you didnt know about.  You can schedule a scan of the files for hourly, daily etc.. the settings I like to use here are scan every 3 hours, Detection mode Hash and exclude directories wp-content/cache and wp-content/uploads</p>
<p><a href="http://lesterchan.net/portfolio/programming/php/">WP-DB Manager:</a> ok so this plugin doesn&#8217;t necessarily help you not get hacked, but in the case that you do and your website goes to hell or your database gets wiped out this little tool will serve you wonders.  The secret to this one is using the automatic database backup feature and schedule it to email you the database backups once a day.  (Dont forget to use the Gzip compression!)</p>
<p>Put this in your wp-admin folder as .htaccess (stole this from <a href="http://wordpress.org/extend/plugins/bulletproof-security/">wordpress bulletproof</a>)</p>
<p># BULLETPROOF .45.2 WP-ADMIN SECURE .HTACCESS<br />
# The Most Common Apache Directives to force PHP5 to be used instead of PHP4<br />
# Some web hosts have very specific directives &#8211; check with your web host first<br />
# Remove the pound sign in front of AddType x-mapp-php5 .php for 1&amp;1 web hosting<br />
# AddType x-mapp-php5 .php<br />
# Other common possibilities depending on your web host &#8211; check with your web host first<br />
# AddHandler application/x-httpd-php5 .php<br />
# AddHandler cgi-php5 .php<br />
# FILTER REQUEST METHODS<br />
RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK) [NC]<br />
RewriteRule ^(.*)$ &#8211; [F,L]<br />
# QUERY STRING EXPLOITS<br />
RewriteCond %{QUERY_STRING} ../ [NC,OR]<br />
RewriteCond %{QUERY_STRING} boot.ini [NC,OR]<br />
RewriteCond %{QUERY_STRING} tag= [NC,OR]<br />
RewriteCond %{QUERY_STRING} ftp:  [NC,OR]<br />
RewriteCond %{QUERY_STRING} http:  [NC,OR]<br />
RewriteCond %{QUERY_STRING} https:  [NC,OR]<br />
RewriteCond %{QUERY_STRING} mosConfig [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*([|]|(|)|&lt;|&gt;||&#8221;|;|?|*).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(&amp;#x22;|&amp;#x27;|&amp;#x3C;|&amp;#x3E;|&amp;#x5C;|&amp;#x7B;|&amp;#x7C;).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(%0|%A|%B|%C|%D|%E|%F|127.0).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(globals|encode|localhost|loopback).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(request|select|insert|union|declare|drop).* [NC]<br />
RewriteRule ^(.*)$ &#8211; [F,L]
<p><i>Article written by <a href="http://www.mycomputeraid.com">MyComputerAid.com</a></i></p>
<p class="a2a_link">
<a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Computer%20support%20articles&amp;siteurl=http%3A%2F%2Fwww.mycomputeraid.com%2F&amp;linkname=Howto%20secure%20wordpress&amp;linkurl=http%3A%2F%2Fwww.mycomputeraid.com%2Fcomputers%2Finternet%2Fhowto-secure-wordpress%2F">
	<img  src= "http://www.mycomputeraid.com/wp-content/plugins/add-to-any/bookmark.gif"  width= "91"  height= "16"  border= "0"  alt= "Bookmark title="bookmark image" />
</a>
<script type="text/javascript">a2a_linkname="Howto secure wordpress";a2a_linkurl="http://www.mycomputeraid.com/computers/internet/howto-secure-wordpress/";</script>
<script type="text/javascript" src="http://www.addtoany.com/js.dropdown.js?type=page"></script>

</p><p>Post from: <a href="http://www.mycomputeraid.com">MyComputerAid.com Computer support</a></p>
<p><a href="http://www.mycomputeraid.com/computers/internet/howto-secure-wordpress/">Howto secure wordpress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mycomputeraid.com/computers/internet/howto-secure-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple wordpress upgrade from SSH howto</title>
		<link>http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/</link>
		<comments>http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 22:25:29 +0000</pubDate>
		<dc:creator>MyComputerAid</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.mycomputeraid.com/?p=903</guid>
		<description><![CDATA[cd to the directory of the website you want to upgrade then download wordpress latest release: wget http://wordpress.org/latest.zip unzip latest.zip cd wordpress rm -rf wp-config-sample.php wp-content cd ../ rm -rf rm -rf wordpress index.php license.txt readme.html wp-admin wp-app.php wp-atom.php wp-blog-header.php wp-comments-post.php wp-commentsrss2.php wp-config-sample.php wp-cron.php wp-feed.php wp-includes wp-links-opml.php wp-load.php wp-login.php wp-mail.php wp-pass.php wp-rdf.php wp-register.php wp-rss2.php wp-rss.php [...]]]></description>
			<content:encoded><![CDATA[<p>cd to the directory of the website you want to upgrade then download wordpress latest release:</p>
<p>wget http://wordpress.org/latest.zip</p>
<p>unzip latest.zip</p>
<p>cd wordpress</p>
<p>rm -rf wp-config-sample.php wp-content</p>
<p>cd ../</p>
<p>rm -rf rm -rf wordpress index.php license.txt readme.html wp-admin wp-app.php wp-atom.php wp-blog-header.php wp-comments-post.php wp-commentsrss2.php wp-config-sample.php wp-cron.php wp-feed.php wp-includes wp-links-opml.php wp-load.php wp-login.php wp-mail.php wp-pass.php wp-rdf.php wp-register.php wp-rss2.php wp-rss.php wp-settings.php wp-trackback.php xmlrpc.php</p>
<p>cp -r wordpress/* ./</p>
<p>Then go to yourwebsite.com/wp-admin do the update database and your done!
<p><i>Article written by <a href="http://www.mycomputeraid.com">MyComputerAid.com</a></i></p>
<p class="a2a_link">
<a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Computer%20support%20articles&amp;siteurl=http%3A%2F%2Fwww.mycomputeraid.com%2F&amp;linkname=Simple%20wordpress%20upgrade%20from%20SSH%20howto&amp;linkurl=http%3A%2F%2Fwww.mycomputeraid.com%2Fcomputers%2Finternet%2Fsimple-wordpress-upgrade-from-ssh%2F">
	<img  src= "http://www.mycomputeraid.com/wp-content/plugins/add-to-any/bookmark.gif"  width= "91"  height= "16"  border= "0"  alt= "Bookmark title="bookmark image" />
</a>
<script type="text/javascript">a2a_linkname="Simple wordpress upgrade from SSH howto";a2a_linkurl="http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/";</script>
<script type="text/javascript" src="http://www.addtoany.com/js.dropdown.js?type=page"></script>

</p><p>Post from: <a href="http://www.mycomputeraid.com">MyComputerAid.com Computer support</a></p>
<p><a href="http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/">Simple wordpress upgrade from SSH howto</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mycomputeraid.com/computers/internet/simple-wordpress-upgrade-from-ssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>permanently delete your facebook account</title>
		<link>http://www.mycomputeraid.com/computers/internet/permanently-delete-your-facebook-account/</link>
		<comments>http://www.mycomputeraid.com/computers/internet/permanently-delete-your-facebook-account/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 05:46:11 +0000</pubDate>
		<dc:creator>MyComputerAid</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook login]]></category>
		<category><![CDATA[remove facebook]]></category>

		<guid isPermaLink="false">http://www.mycomputeraid.com/?p=897</guid>
		<description><![CDATA[It is now possible to permanently delete your facebook account.  In the past after disabling your facebook account it would remain on the facebook servers forever, meaning that you could re-enable your account at any time in the future with everything still there.  It was almost like facebook didnt believe you where going to leave [...]]]></description>
			<content:encoded><![CDATA[<p>It is now possible to permanently delete your facebook account.  In the past after disabling your facebook account it would remain on the facebook servers forever, meaning that you could re-enable your account at any time in the future with everything still there.  It was almost like facebook didnt believe you where going to leave or just wanted to keep all your information &#8220;just in case&#8221;.  Now it is actually possible to permanently delete your facebook account for good, no returning, no traces of your account to remain on facebook (so they say).  All you have to do is go to this URL and put in your email address (yes its real and aparently works).</p>
<p><span style="text-decoration: underline;"><span style="color: #810081;"><a href="http://www.facebook.com/help/contact.php?show_form=delete_account">http://www.facebook.com/help/contact.php?show_form=delete_account</a></span></span><a href="http://www.facebook.com/group.php?gid=16929680703"></a>
<p><i>Article written by <a href="http://www.mycomputeraid.com">MyComputerAid.com</a></i></p>
<p class="a2a_link">
<a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Computer%20support%20articles&amp;siteurl=http%3A%2F%2Fwww.mycomputeraid.com%2F&amp;linkname=permanently%20delete%20your%20facebook%20account&amp;linkurl=http%3A%2F%2Fwww.mycomputeraid.com%2Fcomputers%2Finternet%2Fpermanently-delete-your-facebook-account%2F">
	<img  src= "http://www.mycomputeraid.com/wp-content/plugins/add-to-any/bookmark.gif"  width= "91"  height= "16"  border= "0"  alt= "Bookmark title="bookmark image" />
</a>
<script type="text/javascript">a2a_linkname="permanently delete your facebook account";a2a_linkurl="http://www.mycomputeraid.com/computers/internet/permanently-delete-your-facebook-account/";</script>
<script type="text/javascript" src="http://www.addtoany.com/js.dropdown.js?type=page"></script>

</p><p>Post from: <a href="http://www.mycomputeraid.com">MyComputerAid.com Computer support</a></p>
<p><a href="http://www.mycomputeraid.com/computers/internet/permanently-delete-your-facebook-account/">permanently delete your facebook account</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mycomputeraid.com/computers/internet/permanently-delete-your-facebook-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Your Home Page or Pages</title>
		<link>http://www.mycomputeraid.com/computers/internet/setting-your-home-page-or-pages/</link>
		<comments>http://www.mycomputeraid.com/computers/internet/setting-your-home-page-or-pages/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:47:09 +0000</pubDate>
		<dc:creator>Ciel501</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Home Page]]></category>

		<guid isPermaLink="false">http://www.mycomputeraid.com/?p=887</guid>
		<description><![CDATA[Set the Home Page or Pages Use Internet Explorer to go to the page you want to use as your home page. If you want to designate additional pages as a new home-page tab set, open the other pages on their own tabs. Click the Home button down arrow, and choose Add or Change Home [...]]]></description>
			<content:encoded><![CDATA[<p>Set the Home Page or Pages</p>
<ol>
<li>Use Internet Explorer to go to the page you want to use as your home page. If you want to designate additional pages as a new home-page tab set, open the other pages on their own tabs.</li>
<li>Click the Home button down arrow, and choose Add or Change Home Page from the drop-down menu.</li>
<li>In the Add or Change Home Page dialog box, select the option you want.</li>
<li>Click Yes.</li>
</ol>
<p><i>Article written by <a href="http://www.mycomputeraid.com">MyComputerAid.com</a></i></p>
<p class="a2a_link">
<a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Computer%20support%20articles&amp;siteurl=http%3A%2F%2Fwww.mycomputeraid.com%2F&amp;linkname=Setting%20Your%20Home%20Page%20or%20Pages&amp;linkurl=http%3A%2F%2Fwww.mycomputeraid.com%2Fcomputers%2Finternet%2Fsetting-your-home-page-or-pages%2F">
	<img  src= "http://www.mycomputeraid.com/wp-content/plugins/add-to-any/bookmark.gif"  width= "91"  height= "16"  border= "0"  alt= "Bookmark title="bookmark image" />
</a>
<script type="text/javascript">a2a_linkname="Setting Your Home Page or Pages";a2a_linkurl="http://www.mycomputeraid.com/computers/internet/setting-your-home-page-or-pages/";</script>
<script type="text/javascript" src="http://www.addtoany.com/js.dropdown.js?type=page"></script>

</p><p>Post from: <a href="http://www.mycomputeraid.com">MyComputerAid.com Computer support</a></p>
<p><a href="http://www.mycomputeraid.com/computers/internet/setting-your-home-page-or-pages/">Setting Your Home Page or Pages</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mycomputeraid.com/computers/internet/setting-your-home-page-or-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

