<?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; php</title>
	<atom:link href="http://www.mitchelaneous.com/tag/php/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>Remove Extra Feeds in WordPress</title>
		<link>http://www.mitchelaneous.com/2010/12/06/remove-extra-feeds-in-wordpress/</link>
		<comments>http://www.mitchelaneous.com/2010/12/06/remove-extra-feeds-in-wordpress/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 12:37:50 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2010/12/06/remove-extra-feeds-in-wordpress/</guid>
		<description><![CDATA[How can you remove the extra RSS feeds that are displayed in your WordPress blog, in the address bar of most modern browsers?  On my website, I only want to show my one RSS feed for people to subscribe to.  I don&#8217;t want to display the comment feed or the separate feed for a category.  [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; margin: 0px 0px 0px 4px; padding-left: 0px; padding-right: 0px; display: inline; float: right; padding-top: 0px; border: 0px;" title="Remove Extra RSS in WordPress" src="http://www.mitchelaneous.com/wp-content/uploads/2010/12/wp.jpg" border="0" alt="WordPress Tip" width="142" height="135" align="right" />How can you remove the extra RSS feeds that are displayed in your WordPress blog, in the address bar of most modern browsers?  On my website, I only want to show my <strong>one</strong> RSS feed for people to subscribe to.  I don&#8217;t want to display the comment feed or the separate feed for a category.  For me, showing too many RSS feeds is confusing to a novice user.  So here is how you can turn off the extra feeds (such as category feeds) in WordPress.</p>
<p><span id="more-4341"></span></p>
<p>Place this snipit of code in your theme&#8217;s functions.php file:</p>
<p><span style="font-family: Courier New;">remove_action( &#8216;wp_head&#8217;, &#8216;feed_links_extra&#8217;, 3 ); </span></p>
<p>or if you don&#8217;t yet have anything in your functions.php file, you might have to put the PHP info in there, like so:</p>
<pre><code>&lt;?php</code> remove_action( 'wp_head', 'feed_links_extra', 3 ); <code>?&gt;</code></em></pre>
<p>That should effectively remove the extra RSS feeds displayed on your blog posts.</p>
<p>Hope this helps you out with un-cluttering some of the crap the WordPress or WordPress themes like to put in your header information.</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/12/06/remove-extra-feeds-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Best WordPress Cheat Sheets</title>
		<link>http://www.mitchelaneous.com/2010/08/27/best-wordpress-cheat-sheets/</link>
		<comments>http://www.mitchelaneous.com/2010/08/27/best-wordpress-cheat-sheets/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 12:06:58 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/?p=3966</guid>
		<description><![CDATA[Working with WordPress is almost like learning a new language.  Not only do you need to learn some of the basic fundamentals of PHP, but you also need to learn what WordPress tags go where, and what they do. Since nobody has the time to do that these days, I thought it would be about [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" style="display: inline; border: 0px;" title="WordPress Cheat Sheet Help" src="http://www.mitchelaneous.com/wp-content/uploads/2010/08/image7.png" border="0" alt="WordPress Cheat Sheet Help" width="500" height="202" /></p>
<p>Working with WordPress is almost like learning a new language.  Not only do you need to learn some of the basic fundamentals of PHP, but you also need to learn what WordPress tags go where, and what they do. Since nobody has the time to do that these days, I thought it would be about time to break out my <strong>WordPress cheat sheet collection</strong>.</p>
<p><span id="more-3966"></span></p>
<p>This first WordPress cheat sheet comes from Ekin Ertac&#8217;s blog:</p>
<p style="text-align: center;"><img class="aligncenter" style="display: inline; border: 0px;" title="wp-cheats1" src="http://www.mitchelaneous.com/wp-content/uploads/2010/08/wpcheats1.jpg" border="0" alt="wp-cheats1" width="504" height="310" /></p>
<p>It covers a lot of the basics for your template and theme creation tags, and can also be downloaded at <a href="http://blog.ekinertac.com/post/808310486/wordpress-cheat-sheet" target="_blank">blog.ekinertac.com</a>.</p>
<p style="text-align: center;"><img class="aligncenter" style="display: inline; border: 0px;" title="wp cheat sheet 2" src="http://www.mitchelaneous.com/wp-content/uploads/2010/08/image8.png" border="0" alt="wp cheat sheet 2" width="504" height="317" /></p>
<p>The <a href="http://frozr.com/wp-content/uploads/2008/07/wp-cheat1.html" target="_blank">WP Help Sheet</a> is the next one I want to show you.  Rather than downloading a PDF, everything is stored on one single webpage you can bookmark and save for later.</p>
<p style="text-align: center;"><img class="aligncenter" style="display: inline; border: 0px;" title="wp cheat sheet 3" src="http://www.mitchelaneous.com/wp-content/uploads/2010/08/image9.png" border="0" alt="wp cheat sheet 3" width="504" height="317" /></p>
<p>Last, but not least, we have a cheat sheet for template tags to use in WordPress from <a href="http://www.dbswebsite.com/design/wordpress-reference/" target="_blank">DBS Interactive</a>.  If you have a hard time remembering that one tag that pulls the data you need, this website is the perfect reference tool for the occasion.</p>
<p><em>Hope these three cheat sheets help out the next time you dive into WordPress template editing, and get a little lost.</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/2010/08/27/best-wordpress-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GetSimple Content Management</title>
		<link>http://www.mitchelaneous.com/2009/08/18/getsimple-content-management/</link>
		<comments>http://www.mitchelaneous.com/2009/08/18/getsimple-content-management/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 11:24:23 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[getsimple]]></category>
		<category><![CDATA[hosting scripts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[no databases]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/08/18/getsimple-content-management/</guid>
		<description><![CDATA[Looking for a new way to manage your web site? GetSimple is the newest content management system to get my attention, and I have to say – it does look impressive. Probably the one feature that got my attention the most is it doesn’t use mySQL to store information, or any sort of database at [...]]]></description>
			<content:encoded><![CDATA[</p>
<p> <img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Get Smart... err, I mean GetSimple!" border="0" alt="Get Smart... err, I mean GetSimple!" src="http://www.mitchelaneous.com/wp-content/uploads/2009/08/getsimple.png" width="504" height="379" />
<p>Looking for a new way to manage your web site? <strong>GetSimple</strong> is the newest content management system to get my attention, and I have to say – it does look impressive. </p>
<p>Probably the one feature that got my attention the most is it doesn’t use mySQL to store information, or any sort of database at all.&#160; It does it through the magical wonderment of XML.</p>
<blockquote><p>We don&#8217;t use mySQL to store our information, but instead depend on the speed and accuracy of XML. By utilizing XML, we are able stay away from introducing an extra layer of slowness and complexity associated with connecting to a mySQL database. Because GetSimple was built specifically for the small-site market, we feel this is the absolutely best option for data storage.</p>
</blockquote>
<p>What are the requirements?&#160; </p>
<ul>
<li>UNIX/Linux host </li>
<li>PHP 5.1.3+ </li>
<li>Apache </li>
<li><b>No</b> MySQL Database </li>
<li>6 minutes to spare </li>
</ul>
<p>Even the documentation is light for it, with <a href="http://get-simple.info/docs">only six pages</a> telling you everything you might need to know about how to get running with GetSimple.&#160; Filed in as <em>“looks interesting, but really need to play with it”</em> <a href="http://get-simple.info/">GetSimple</a> looks simple enough to use, and friendly enough for everybody to enjoy.&#160; </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/08/18/getsimple-content-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roll Your Own TinyURL Hosted Service</title>
		<link>http://www.mitchelaneous.com/2009/08/17/roll-your-own-tinyurl-hosted-service/</link>
		<comments>http://www.mitchelaneous.com/2009/08/17/roll-your-own-tinyurl-hosted-service/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 10:45:36 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shorten]]></category>
		<category><![CDATA[shrink]]></category>
		<category><![CDATA[tiny url]]></category>
		<category><![CDATA[yourls]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/08/17/roll-your-own-tinyurl-hosted-service/</guid>
		<description><![CDATA[Tired of your favorite link shortening service not listening to your demands, or maybe you have a better idea for a link shortening service?&#160; This is where YOURLS comes into the picture.&#160; Wearing it’s spandex tights of freedom, it will let you use the power of PHP to roll down own link shortening service. Some [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Create Your Own Link Shortening Service" border="0" alt="Create Your Own Link Shortening Service" src="http://www.mitchelaneous.com/wp-content/uploads/2009/08/image6.png" width="213" height="93" /> </p>
<p>Tired of your favorite link shortening service not listening to your demands, or maybe you have a better idea for a link shortening service?&#160; This is where <strong>YOURLS</strong> comes into the picture.&#160; Wearing it’s spandex tights of freedom, it will let you use the power of PHP to roll down own link shortening service.</p>
<p>Some of the features include:</p>
<ul>
<li>Public (everybody can create short links) or private (your links only) </li>
<li>Random (sequential) or custom URL keyword </li>
<li>Track click count on your links </li>
<li>Neat AJAXed interface </li>
<li>Developer API </li>
</ul>
<p>The requirements are pretty lean too:</p>
<ul>
<li>A server with <strong>mod_rewrite</strong> enabled </li>
<li>At least <strong>PHP 4.3</strong> </li>
<li>At least <strong>MYSQL 4.1</strong> </li>
</ul>
<p>Once you get it up and running, you can even use it in connection with your own WordPress install so you can generate short URLs using your service for each new post or page.&#160; </p>
<p>The bottom line is, if you want to roll your own TinyURL, this script provides the easiest way to get that done.&#160; Download it and give it a shot at <a href="http://yourls.org/">yourl.org</a>.</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/08/17/roll-your-own-tinyurl-hosted-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightweight Message Boards with PunBB</title>
		<link>http://www.mitchelaneous.com/2009/04/21/lightweight-message-boards-with-punbb/</link>
		<comments>http://www.mitchelaneous.com/2009/04/21/lightweight-message-boards-with-punbb/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 11:03:17 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Forum Scripts]]></category>
		<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[message boards]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[punbb]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[small]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/04/21/lightweight-message-boards-with-punbb/</guid>
		<description><![CDATA[A fast and lightweight PHP-powered set of forums, PunBB is a script you may not have heard much about but I can promise it is well worth looking into.  The goal of this script is to be faster, smaller and less graphically overpowering in comparison with other forum scripts out there.  That alone makes it [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="PunBB - Forum Script in Action" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/image6.png" border="0" alt="PunBB - Forum Script in Action" width="500" height="283" /></p>
<p>A fast and lightweight PHP-powered set of forums, <strong>PunBB</strong> is a script you may not have heard much about but I can promise it is well worth looking into.  The goal of this script is to be faster, smaller and less graphically overpowering in comparison with other forum scripts out there.  That alone makes it a good option if you are on a shared web hosting account.</p>
<p>The requirements to get PunBB are fairly light too:</p>
<ul>
<li>A webserver (preferably Apache).</li>
<li>PHP 4.1.0 or later (PHP 5 included).</li>
<li>MySQL 3.23.17 or later, PostgreSQL 7.0 or later or SQLite.</li>
</ul>
<p>To install, all you need to do is upload the script to the location you want it on your web hosting account, and then run the install.php from the forum’s root directory, then follow the on screen instructions.</p>
<p>One thing I don’t like is the fact that they have various versions of the script to download from the main page.  You have PunBB 1.3 and PunBB 1.2.  This is an annoyance for me with several scripts out there.  Personally I like just having one download link with the latest version right there in front of my face.</p>
<p>PunBB is also extendable.  After you install it, you can take your choice of which extensions you want.  They can do anything from giving you a CAPTCHA to register and post to adding poll-like features.</p>
<p>Give <a href="http://punbb.informer.com/">PunBB</a> a shot.  Why?  Well, as they put it <em>because less is really more.</em></p>
<p style="text-align: center;"><span style="font-size: small;"><strong><img class="alignnone size-full wp-image-2637" title="More Great Content!" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/fav1.gif" alt="More Great Content!" width="16" height="16" /> Bonus</strong> -  be sure to check out our other <a href="http://www.mitchelaneous.com/category/web-development/forum-scripts/">free forum script reviews</a>! <img class="alignnone size-full wp-image-2637" title="More Great Content!" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/fav1.gif" alt="More Great Content!" width="16" height="16" /></span></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/21/lightweight-message-boards-with-punbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Machines Forum</title>
		<link>http://www.mitchelaneous.com/2009/04/20/simple-machines-forum/</link>
		<comments>http://www.mitchelaneous.com/2009/04/20/simple-machines-forum/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 12:03:44 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Forum Scripts]]></category>
		<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[simple machines forum]]></category>
		<category><![CDATA[SMF]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/04/20/simple-machines-forum/</guid>
		<description><![CDATA[SMF, or otherwise known as Simple Machines Forum, is a free professional software package that will let you get yourself an online community setup in minutes.  I had not heard much about this software till I started working for Lunarpages, since it is what they use to run their forums.  Ever since though, I have [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 5px 5px; border-right-width: 0px" title="Simple Machines Forum (SMF)" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/background-logo.jpg" border="0" alt="Simple Machines Forum (SMF)" width="201" height="54" align="right" /> SMF, or otherwise known as Simple Machines Forum, is a free professional software package that will let you get yourself an online community setup in minutes.  I had not heard much about this software till I started working for Lunarpages, since it is what they use to run their forums.  Ever since though, I have been sold.  It is a powerful, and customizable forum script.</p>
<p>This forum script uses PHP and MySQL to run the backend, so that means that any shared hosting account should be able to host it.  Here are a few more features:</p>
<ul>
<li>Comprehensive template system.</li>
<li>Advanced permission and user management.</li>
<li>Supports multiple languages at once.</li>
<li>Open and well-documented source code.</li>
<li>Tracking of new and old unread topics, not just from your last visit.</li>
<li>Designed for optimal performance and scalability.</li>
<li>Multi-media output.</li>
</ul>
<p><span id="more-2630"></span>Here are a few screenshots of it in action.  First we have the administrator interface:</p>
<p><img style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="SMF Admin Interface Screenshot" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/image4.png" border="0" alt="SMF Admin Interface Screenshot" width="520" height="558" /></p>
<p>Next, we see how the forums would look after you have installed SMF:</p>
<p><img style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="SMF Forums Screenshot" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/image5.png" border="0" alt="SMF Forums Screenshot" width="520" height="450" /></p>
<p>If you are looking for support, there are many ways to ask for help.  You have the FAQs, the SMF community, or searching on your own via their web site.  They also have an online manual which has many of its features and other details documented.</p>
<p>First time users might want to check out <a href="http://docs.simplemachines.org/index.php?topic=10">how to Install SMF</a> or check through the various <a href="http://www.simplemachines.org/community/index.php?board=20.0">converters</a>, so you can go from another forum script (like phpBB, vBulletin, IPB, and others to SMF).</p>
<p><a href="http://www.simplemachines.org/">Simple Machines Forum</a> is free to use, and easy to customize.  If you are searching for a forum script of your own, you should definitely give it a shot.</p>
<p style="text-align: center;"><span style="font-size: small;"><strong><img class="alignnone size-full wp-image-2637" title="More Great Content!" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/fav1.gif" alt="More Great Content!" width="16" height="16" /> Bonus</strong> -  be sure to check out our other <a href="http://www.mitchelaneous.com/category/web-development/forum-scripts/">free forum script reviews</a>! <img class="alignnone size-full wp-image-2637" title="More Great Content!" src="http://www.mitchelaneous.com/wp-content/uploads/2009/04/fav1.gif" alt="More Great Content!" width="16" height="16" /></span></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/20/simple-machines-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Resource for Designers and Devs Alike</title>
		<link>http://www.mitchelaneous.com/2009/03/01/great-resource-for-designers-and-devs-alike/</link>
		<comments>http://www.mitchelaneous.com/2009/03/01/great-resource-for-designers-and-devs-alike/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:37:36 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Online Apps]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[corkdump]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2009/03/01/great-resource-for-designers-and-devs-alike/</guid>
		<description><![CDATA[I am always looking for great web development resources to share, but this time around I am going to give you a link that also highlights the best of the best when it comes to designer or developer tools.&#160; Corkdump.com is one of the best resource web sites for webmasters. They provide resources for: CSS/XHTML [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Web Developer Resources" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="131" alt="Web Developer Resources" src="http://www.mitchelaneous.com/wp-content/uploads/2009/03/corkdumpwebdevresources.png" width="453" border="0" /> </p>
<p>I am always looking for great web development resources to share, but this time around I am going to give you a link that also highlights the best of the best when it comes to designer or developer tools.&#160; <a href="http://www.corkdump.com/">Corkdump.com</a> is one of the best resource web sites for webmasters.</p>
</p>
<p>They provide resources for:</p>
<ul>
<li>CSS/XHTML </li>
<li>JavaScript/AJAX </li>
<li>Flash/ActionScript </li>
<li>Photoshop/Illustrator </li>
<li>Blog Resources </li>
<li>Design Insperation </li>
<li>PHP/MySQL </li>
</ul>
<p>That is not all, but I have to leave you with a few surprises, right?&#160; So if you want a database of some of the best web developer links – check out and bookmark <a href="http://www.corkdump.com">corkdump.com</a>.&#160; You will not be disappointed.</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/01/great-resource-for-designers-and-devs-alike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful Blogging with Textpattern</title>
		<link>http://www.mitchelaneous.com/2008/12/09/beautiful-blogging-with-textpattern/</link>
		<comments>http://www.mitchelaneous.com/2008/12/09/beautiful-blogging-with-textpattern/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 12:51:37 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Development Tutorials]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.mitchelaneous.com/2008/12/09/beautiful-blogging-with-textpattern/</guid>
		<description><![CDATA[Textpattern is another one of those great blogging scripts that often gets forgotten about with the surge of popularity that WordPress has had over the past few years.&#160; It is a elegant, flexible and easy to use content management system that is both open source and free to use. The requirements are pretty basic to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://textpattern.com/">Textpattern</a> is another one of those great blogging scripts that often gets forgotten about with the surge of popularity that WordPress has had over the past few years.&nbsp; It is a elegant, flexible and easy to use content management system that is both open source and free to use.</p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="172" alt="textpattern" src="http://www.mitchelaneous.com/wp-content/uploads/2008/12/textpattern.png" width="496" border="0"> </p>
<p>The <a href="http://textpattern.com/faq/119/what-are-the-system-requirements">requirements</a> are pretty basic to get it up and running, so any Linux-based shared hosting environment should do.&nbsp; The <a href="http://textbook.textpattern.net/wiki/index.php?title=Detailed_Installation_Instructions">install</a> is just as simple too, with your basic download, configure, setup database, and upload. </p>
<p>It can handle just about any blogging task you throw it&#8217;s way.&nbsp; From content publishing, multiple contributors, link management and the inclusion of Textile, a simple syntax for nudging plain text into structurally sound and stylistically rich web content, it is not lacking in features.</p>
<p>If you want to give it a test drive, there is <a href="http://www.opensourcecms.com/index.php?option=com_content&amp;task=view&amp;id=177&amp;Itemid=1&amp;catid=69">both a front end and admin demo up on OpenSourceCMS.com</a>.</p>
<p>It comes ready for themes and plugins too.&nbsp; Your best resource to pick those up would be the <a href="http://textpattern.org/">Textpattern Resources</a> web site.&nbsp; <a href="http://textgarden.org/">TextGarden.org</a> also has a number of Textpattern themes to use.</p>
<p>All in all, I think Textpattern is a simple, yet effective blogging script that is well worth trying out.&nbsp; </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/2008/12/09/beautiful-blogging-with-textpattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

