<?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>Mitchelaneous &#187; hosting</title>
	<atom:link href="http://www.mitchelaneous.com/tag/hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mitchelaneous.com</link>
	<description>geeky tutorials, tips, guides and reviews</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:22:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Increase php.ini Upload Limit</title>
		<link>http://www.mitchelaneous.com/2011/11/11/how-to-increase-php-ini-upload-limit/</link>
		<comments>http://www.mitchelaneous.com/2011/11/11/how-to-increase-php-ini-upload-limit/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 13:31:01 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[increase]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[upload limit]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/?p=4646</guid>
		<description><![CDATA[Got another quick php.ini tutorial to share with you today. It is really easy to use a php.ini file to increase your PHP upload limit.  Lots of scripts ask you to do this so that you can upload larger files. By default, the server and PHP limit you on how much content you can upload [...]]]></description>
			<content:encoded><![CDATA[<p>Got another quick <a href="http://www.mitchelaneous.com/2011/11/10/how-to-create-a-php-ini-file/">php.ini</a> tutorial to share with you today. It is really easy to use a php.ini file to increase your PHP upload limit.  Lots of scripts ask you to do this so that you can upload larger files. By default, the server and PHP limit you on how much content you can upload at once.  By tweaking this setting though, you can bump it up some.</p>
<p><span id="more-4646"></span></p>
<p>This can be done with the php.ini file. Here is how you do it:</p>
<p>Create a file under public_html and name it php.ini (if you do not have one yet.) Put the following in it:</p>
<p><code>upload_max_filesize = 5M</code></p>
<p><code>post_max_size = 5M</code></p>
<p>Replace the <strong>5</strong> with <strong>20</strong>or less. If you are letting other people upload, a size cap protects your storage space from abuse/overuse.</p>
<p><strong>You will then need to add this line to a .htaccess file:</strong>(Please replace &#8220;yourusername&#8221; with your cPanel user name an add to the end of the command line the folder(s) to the location of the php.ini file &#8211; Also there is a space between path and /home)</p>
<p><code>suPHP_ConfigPath /home/Yourusername/public_html</code></p>
<p>Now your PHP upload limit should be increased. It should also be mentioned that your results may vary if you are using shared website hosting.  Some shared web hosting providers might limit the upload size to prevent abuse.  If you have any questions, just ask them.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2011/11/11/how-to-increase-php-ini-upload-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a php.ini File</title>
		<link>http://www.mitchelaneous.com/2011/11/10/how-to-create-a-php-ini-file/</link>
		<comments>http://www.mitchelaneous.com/2011/11/10/how-to-create-a-php-ini-file/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 13:24:52 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2011/11/10/how-to-create-a-php-ini-file/</guid>
		<description><![CDATA[When you are working on a website, a php.ini file can be used for a lot of neat things.  More times than not, it is used to increase your upload limit. Are you in the need for a php.ini file, but your web hosting account is lacking one? You can create your own and upload [...]]]></description>
			<content:encoded><![CDATA[<p>When you are working on a website, a php.ini file can be used for a lot of neat things.  More times than not, it is used to increase your upload limit. Are you in the need for a php.ini file, but your web hosting account is lacking one? You can create your own and upload it to the right spot after following a few simple steps.</p>
<p><span id="more-4645"></span></p>
<p><strong>Step 1</strong>- Open up a text editor (such as Notepad or cPanel&#8217;s File Manager) and add in the lines you need and save the file.</p>
<p><strong>Step 2</strong>- Using the cPanel&#8217;s File Manager or your FTP client you will need to upload the file to the location you need it. This is usually inside of your public_html folder.</p>
<p><strong>Step 3</strong>- Rename the file to php.ini, and save. To protect the php.ini file, you can add these lines to your .htaccess file:</p>
<dl>
<dd><em>&lt;Files php.ini&gt;</em></dd>
<dd><em>order allow,deny</em></dd>
<dd><em>deny from all</em></dd>
<dd><em>&lt;/Files&gt;</em></dd>
</dl>
<p>This way, it can not be displayed when somebody types in the file path into their browser.</p>
<p><strong>Step 4</strong>- Also, in the .htaccess file, you will need to add the following line:</p>
<dl>
<dd><em>suPHP_ConfigPath /home/username/public_html</em></dd>
</dl>
<p>Replace username with your actual cPanel user name. This will tell your account where your php.ini file exists.</p>
<p><strong>This list includes the php.ini directives you can set to configure your PHP setup:</strong></p>
<ul>
<li><a href="http://us2.php.net/manual/en/ini.list.php">http://us2.php.net/manual/en/ini.list.php</a></li>
</ul>
<p><strong>Friendly Reminder:</strong> <em>Adjusting the memory limit on the shared hosting plans is not suggested. Since you are on a shared hosting platform, your memory limits are pre-determined by the server you are hosting on, and trying to use more memory than you have assigned to you will cause you issues in the future.</em></p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2011/11/10/how-to-create-a-php-ini-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP Basics</title>
		<link>http://www.mitchelaneous.com/2011/10/06/ftp-basics/</link>
		<comments>http://www.mitchelaneous.com/2011/10/06/ftp-basics/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 12:29:37 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[suggestions]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2011/10/06/ftp-basics/</guid>
		<description><![CDATA[If you want to be able to work with your website on a server, you have to learn the basics of FTP.&#160; So, let us start with the basics.&#160; FTP stands for File Transfer Protocol. To simplify it, it is the protocol which allows files to be transferred across the Web. Using a special program [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="How to FTP" border="0" alt="How to FTP" align="right" src="http://www.mitchelaneous.com/wp-content/uploads/2011/10/image.png" width="155" height="79" />If you want to be able to work with your website on a server, you have to learn the basics of FTP.&#160; So, let us start with the basics.&#160; FTP stands for File Transfer Protocol. To simplify it, it is the protocol which allows files to be transferred across the Web. Using a special program called an FTP client, you can gain access to the files (documents, files and more) that are on your hosting account. You can also edit file permissions, upload and download content too. </p>
<p><span id="more-4639"></span>
<p>There are a lot of good choices when it comes to picking your FTP client.&#160; I have reviewed several via the website here and I am sure there are other good ones I haven&#8217;t looked at.&#160; Personally, my favorite FTP client is <a href="http://www.mitchelaneous.com/2010/07/26/filezilla/" target="_blank">FileZilla</a>. You could also try out WS_FTP, SmartFTP, CuteFTP or a number of other choices there are out there.</p>
<p>Now that you have an FTP client, how do you get started? Well, instructions may vary depending on the FTP client you choose.&#160; Here are the basic details you will need to input:</p>
<ul>
<li><b>Hostname:</b> yourdomain.com </li>
<li><b>Username:</b> your account username </li>
<li><b>Password:</b> your account password </li>
<li><b>Passive FTP:</b> ON for linux accounts, OFF for Windows accounts </li>
</ul>
<p>Should you use a web browser for FTP? I would suggest against it.&#160; It can be done usually by going to <em>ftp://yourdomain.com</em> or <em>ftp://user:pass@yourdomain.com/</em> but my best advice for you would be to get a FTP client to do the job for you.&#160; If your webhost allows it, you might also want to set up secure FTP or FTP over a TLS connection. </p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2011/10/06/ftp-basics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Publishing with Pen.io</title>
		<link>http://www.mitchelaneous.com/2011/04/06/quick-publishing-with-pen-io/</link>
		<comments>http://www.mitchelaneous.com/2011/04/06/quick-publishing-with-pen-io/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 12:20:29 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Online Apps]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[pen.io]]></category>
		<category><![CDATA[publish]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2011/04/06/quick-publishing-with-pen-io/</guid>
		<description><![CDATA[For many people, the idea of purchasing a web hosting account, registering a domain and then uploading some type of script like WordPress to handle the back end of things is a rather challenging task.&#160; Thank goodness there are still resources like pen.io that make it easy to publish just about anything you want to [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 0px 5px 5px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Quick Online Publishing" border="0" alt="Quick Online Publishing" align="right" src="http://www.mitchelaneous.com/wp-content/uploads/2011/04/image.png" width="138" height="95" />For many people, the idea of purchasing a web hosting account, registering a domain and then uploading some type of script like WordPress to handle the back end of things is a rather challenging task.&#160; Thank goodness there are still resources like <strong>pen.io</strong> that make it easy to publish just about anything you want to online. </p>
<p><span id="more-4573"></span>
<p>Pen.io boasts that they are the fastest way to publish online, period. It is true, you can create a beautiful text-based page in seconds and then share it with whomever you wish to share it with too.&#160; Here is a quick example of what the pages look like:</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="Pen.io Example" border="0" alt="Pen.io Example" src="http://www.mitchelaneous.com/wp-content/uploads/2011/04/image1.png" width="500" height="313" /></p>
<p>As you can see, they keep things very simple and lightweight.&#160; Now, I wouldn&#8217;t say this would be the perfect way to publish an entire website &#8211; however it is handy if you want to share something you have written online &#8211; but don&#8217;t want to go through all the trouble of finding a fancy place to host it.&#160; Just write it up, publish and share the link.&#160; It really is super simple to do.</p>
<p>If you want to claim your own pen.io page, head on over to <a href="http://pen.io/" target="_blank">their website</a>.&#160; If you publish anything with it, be sure to leave a link to it in the comments too!</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2011/04/06/quick-publishing-with-pen-io/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh Hai VPS Server!</title>
		<link>http://www.mitchelaneous.com/2010/09/06/oh-hai-vps-server/</link>
		<comments>http://www.mitchelaneous.com/2010/09/06/oh-hai-vps-server/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 20:45:15 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Odds & Ends]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Mitch-Keeler]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[new posts]]></category>
		<category><![CDATA[site5]]></category>
		<category><![CDATA[virtual private server]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/?p=3978</guid>
		<description><![CDATA[Hello, you might be wondering where my websites and I have been over the last few days &#8211; and let me see if I can explain.  I have moved all four of my websites (mitchkeeler.com, mitchelaneous.com, firefoxfacts.com and webhostingshow.com) all to their own virtual private server (otherwise known as a VPS).  So, I am back, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, you might be wondering where my websites and I have been over the last few days &#8211; and let me see if I can explain.  I have moved all four of my websites (<a href="http://www.mitchkeeler.com">mitchkeeler.com</a>, <a href="http://www.mitchelaneous.com">mitchelaneous.com</a>, <a href="http://www.firefoxfacts.com">firefoxfacts.com</a> and <a href="http://www.webhostingshow.com">webhostingshow.com</a>) all to their own virtual private server (otherwise known as a VPS).  So, I am back, and just happen to be wearing black.</p>
<p>Now to get to all the geeky details, for those of you wondering…</p>
<p><span id="more-3978"></span></p>
<p>First things first, I would like to thank LayeredTech (and formerly FastServers.net before the merger) for hosting my websites for free.  I was with them for years, but here in the last few months &#8211; I really started to outgrow the free sponsored hosting environment.</p>
<p>So, who&#8217;s VPS plan did I decide to go with? I signed up with <a href="http://www.site5.com/p/blog-hosting/">Site5</a> (yes, that same place that I work).  They offered the most bang for their buck with the <a href="http://www.site5.com/vps/normal/">VPS1 plan</a> &#8211; and I really liked the fact that they do 100% of the management.  This means they take care of all the updates, security, monitoring and more. For $53 a month, you too can get:</p>
<ul>
<li>736 MB of Memory</li>
<li>40GB of Disk Space</li>
<li>600 GB of Bandwidth</li>
<li>30 Days of Remote Guaranteed Backups</li>
</ul>
<p>Ok, that is about as infomercial as I am going to get here.  So I hope you all forgive me for the time it took me to transfer the files from my old host to my new one (I elected to move my own files, even though Site5 offers free migrations.  What would I learn if I let them do it? *snicker*) and you keep enjoying the daily goodness I have to offer across <a href="http://www.mitchkeeler.com">mitchkeeler.com</a>, <a href="http://www.mitchelaneous.com">mitchelaneous.com</a>, <a href="http://www.firefoxfacts.com">firefoxfacts.com</a> and <a href="http://www.webhostingshow.com">webhostingshow.com</a>.</p>
<p><strong>Oh, and if you haven&#8217;t yet &#8211; join the <a href="http://www.facebook.com/MitchProjects">Mitch&#8217;s Projects Facebook Fan Page!</a></strong></p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2010/09/06/oh-hai-vps-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send Files via Twitter</title>
		<link>http://www.mitchelaneous.com/2009/06/02/send-files-via-twitter/</link>
		<comments>http://www.mitchelaneous.com/2009/06/02/send-files-via-twitter/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 11:00:41 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[Online Apps]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[filetwt]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/06/02/send-files-via-twitter/</guid>
		<description><![CDATA[Want to do a little file sharing via Twitter?&#160; The new service FileTwt does just that.&#160; You can now easily upload and tweet about your files for free. You can quickly share any file that is up to 20MB in size with your entire Twitter network or just a single follower.&#160; All you do to [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Free File Hosting Mixed with Twitter" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="87" alt="Free File Hosting Mixed with Twitter" src="http://www.mitchelaneous.com/wp-content/uploads/2009/06/logo.png" width="271" border="0" /> </p>
<p>Want to do a little file sharing via Twitter?&#160; The new service <strong>FileTwt</strong> does just that.&#160; You can now easily upload and tweet about your files for free. </p>
<p>You can quickly share any file that is up to 20MB in size with your entire Twitter network or just a single follower.&#160; All you do to get things to work is give the FileTwt web site your Twitter details, find the file you want to upload, and then tweet away.&#160; Your newest tweet that you send out will have a special link attached that will let those who got the message download the file in question.</p>
<p>To get started, head over to <a href="http://www.filetwt.com/">FileTwt’s web site</a>, and get signed up or try out the limited services for people who do not sign up for the extra features.&#160; File sharing via Twitter has never been easier.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2009/06/02/send-files-via-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Year in Hosting Podcasts (thus far)</title>
		<link>http://www.mitchelaneous.com/2009/04/07/this-year-in-hosting-podcasts-thus-far/</link>
		<comments>http://www.mitchelaneous.com/2009/04/07/this-year-in-hosting-podcasts-thus-far/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:34:35 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[episodes]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[Web-Hosting-Show]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/04/07/this-year-in-hosting-podcasts-thus-far/</guid>
		<description><![CDATA[Here are all the Web Hosting Show podcasts I have produced this year, thus far.&#160; Hope you will take a few minutes and check it out.&#160; I work hard at putting something out that anybody can learn from – no matter if you are a web hosting novice, or the most knowledgeable guru on the [...]]]></description>
			<content:encoded><![CDATA[<p>Here are all the <a href="http://www.webhostingshow.com">Web Hosting Show</a> podcasts I have produced this year, thus far.&#160; Hope you will take a few minutes and check it out.&#160; I work hard at putting something out that anybody can learn from – no matter if you are a web hosting novice, or the most knowledgeable guru on the block.</p>
<h4><a href="http://www.webhostingshow.com/2009/01/05/web-hosting-thaw-episode-176/"></a></h4>
<ul>
<li><a href="http://www.webhostingshow.com/2009/01/05/web-hosting-thaw-episode-176/">Web Hosting Thaw &#8211; Episode 176</a></li>
<li><a href="http://www.webhostingshow.com/2009/01/19/hope-in-hosting-episode-177/">Hope in Hosting &#8211; Episode 177</a></li>
<li><a href="http://www.webhostingshow.com/2009/01/26/axsys-hosting-episode-178/">Axsys Hosting &#8211; Episode 178</a></li>
<li><a href="http://www.webhostingshow.com/2009/02/02/host-improvement-episode-179/">Host Improvement &#8211; Episode 179</a></li>
<li><a href="http://www.webhostingshow.com/2009/02/16/domain-name-dictionary-episode-180/">Domain Name Dictionary &#8211; Episode 180</a></li>
<li><a href="http://www.webhostingshow.com/2009/02/19/more-domain-name-terms-episode-181/">More Domain Name Terms &#8211; Episode 181</a></li>
<li><a href="http://www.webhostingshow.com/2009/03/02/payment-processing-demystified-episode-182/">Payment Processing Demystified &#8211; Episode 182</a></li>
<li><a href="http://www.webhostingshow.com/2009/03/16/aplus-web-hosting-interview/">A Look into Aplus.net Hosting &#8211; Episode 183</a></li>
<li><a href="http://www.webhostingshow.com/2009/03/30/web-hosting-relationships-episode-184/">Web Hosting Relationships &#8211; Episode 184</a></li>
</ul>
<p>Going all the way back to 2005, there are <strong>over 180 podcasts</strong> in all uploaded on the site, and ready to be listened to.&#160; If there is ever a topic you would like to hear more about – I am all ears, and always welcome to feedback.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2009/04/07/this-year-in-hosting-podcasts-thus-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload to Multiple Free File Hosts at Once!</title>
		<link>http://www.mitchelaneous.com/2009/04/06/upload-to-multiple-free-file-hosts-at-once/</link>
		<comments>http://www.mitchelaneous.com/2009/04/06/upload-to-multiple-free-file-hosts-at-once/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 11:13:21 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[Online Apps]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[megaupload]]></category>
		<category><![CDATA[mirrors]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[rapidshare]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/04/06/upload-to-multiple-free-file-hosts-at-once/</guid>
		<description><![CDATA[Need an easy way to upload a file to multiple free file hosting services all at once?&#160; Upload Mirrors might make this tasks the easiest out of all the solutions I have found online that claim to do the same. All you have to do is select the file you wish to upload, select the [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Free File Mirror Hosting" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 0px 5px; border-right-width: 0px" height="106" alt="Free File Mirror Hosting" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/logo.jpg" width="157" align="right" border="0" /> Need an easy way to upload a file to multiple free file hosting services all at once?&#160; Upload Mirrors might make this tasks the easiest out of all the solutions I have found online that claim to do the same.</p>
<p>All you have to do is select the file you wish to upload, select the services you would like to upload to, and then the upload button will generate your single download link.&#160; Which free file sharing services are supported?</p>
<ul>
<li>Rapidshare </li>
<li>Megaupload </li>
<li>Easy Share </li>
<li>DepositFile </li>
<li>ZShare </li>
<li>FlyUpload </li>
<li>and 6 more file hosts! </li>
</ul>
<p>Once you get the download link, you can easily share it with your friends on MySpace, Facebook, Twitter and other networking platforms.&#160; If you are in search of an easy way to make a few mirror downloads for the free file you wish to distribute, <a href="http://www.uploadmirrors.com/">Upload Mirrors</a> is well worth bookmarking.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2009/04/06/upload-to-multiple-free-file-hosts-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Easy Photo Sharing with Imgur</title>
		<link>http://www.mitchelaneous.com/2009/03/19/quick-and-easy-photo-sharing-with-imgur/</link>
		<comments>http://www.mitchelaneous.com/2009/03/19/quick-and-easy-photo-sharing-with-imgur/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 11:04:00 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imgur]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/03/19/quick-and-easy-photo-sharing-with-imgur/</guid>
		<description><![CDATA[Sharing your images has never been easier with the thanks of imgur.&#160; No, this isn’t just a tribute to the fact that all the good names are taken.&#160; Imgur makes image sharing as easy as it can.&#160; You have a browse box, where you can select your picture from, then you continue.&#160; The requirements are [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Imgur Photo Sharing" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="173" alt="Imgur Photo Sharing" src="http://www.mitchelaneous.com/wp-content/uploads/2009/03/image2.png" width="480" border="0" /> </p>
<p>Sharing your images has never been easier with the thanks of <a href="http://www.imgur.com">imgur</a>.&#160; No, this isn’t just a tribute to the fact that all the good names are taken.&#160; Imgur makes image sharing as easy as it can.&#160; You have a browse box, where you can select your picture from, then you continue.&#160; The requirements are it has to be under 2MB, and in the jpg, gif, or png format.&#160; </p>
<p>Have any more questions?&#160; The <a href="http://www.imgur.com/faq.php">FAQ</a> would be a good place to start.&#160; Overall I like easy, I like simple so I like imgur for free photo sharing.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2009/03/19/quick-and-easy-photo-sharing-with-imgur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share Your Images with Pict.com</title>
		<link>http://www.mitchelaneous.com/2009/02/23/share-your-images-with-pictcom/</link>
		<comments>http://www.mitchelaneous.com/2009/02/23/share-your-images-with-pictcom/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 11:43:10 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[pict]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/02/23/share-your-images-with-pictcom/</guid>
		<description><![CDATA[Time to see what the latest tool looks like in the free image hosting world.&#160; This time around, I was asked to check out Pict.com.&#160; This web site is a free image hosting service that lets you “share your images in a single click”.&#160; How do you use it? Go to Pict.com main page Click [...]]]></description>
			<content:encoded><![CDATA[<p><img title="pict_logo" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 0px 5px; border-right-width: 0px" height="46" alt="pict_logo" src="http://www.mitchelaneous.com/wp-content/uploads/2009/02/pict-logo.png" width="133" align="right" border="0" /> Time to see what the latest tool looks like in the free image hosting world.&#160; This time around, I was asked to check out <a href="http://www.pict.com/">Pict.com</a>.&#160; This web site is a free image hosting service that lets you “share your images in a single click”.&#160; </p>
<p>How do you use it?</p>
<ul>
<li>Go to Pict.com main page </li>
<li>Click any of the &quot;Upload image&quot; buttons and browse to find image(s) that you want to upload </li>
</ul>
<p>After a short while, your image(s) will be uploaded. To share uploaded image move the mouse over the image and click &quot;Share it&quot; link. To view uploaded image just click on image thumbnail.&#160; The JPG, GIF and PNG image file formats are supported.&#160; Also at this time there no limit to the number of files you can upload and share.</p>
<p>To help out with ease of use, they even thrown in <a href="http://www.pict.com/software">Firefox add-on</a>. Overall, I would say this web site is well worth checking out if you are in search of a quick and light image hosting tool.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Mitchelaneous <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.webhostingshow.com">hosting podcast</a> too!</a>    <br />
<br>&nbsp;                                             ]]></content:encoded>
			<wfw:commentRss>http://www.mitchelaneous.com/2009/02/23/share-your-images-with-pictcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

