<?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>SHOUTHUNS</title>
	<atom:link href="http://www.shouthuns.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shouthuns.com</link>
	<description>Blogging, Sharing, and Writing Some Codes</description>
	<lastBuildDate>Thu, 16 Feb 2012 02:58:44 +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 Detect Search Engine Bot Using PHP</title>
		<link>http://www.shouthuns.com/php/how-to-detect-search-engin-bot-using-php.html</link>
		<comments>http://www.shouthuns.com/php/how-to-detect-search-engin-bot-using-php.html#comments</comments>
		<pubDate>Thu, 16 Feb 2012 02:57:18 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP Functions]]></category>
		<category><![CDATA[Trick]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=76</guid>
		<description><![CDATA[First, check the browser or user agent using $_SERVER&#91;'HTTP_USER_AGENT'&#93; for some of the strings listed here: http://www.useragentstring.com/pages/All/ Or more specifically for crawlers: http://www.useragentstring.com/pages/Crawlerlist/ If you want to say log the number of visits of most common search engine crawlers, you could use: $interestingCrawlers = array&#40; 'google', 'yahoo' &#41;; $pattern = '/(' . implode&#40;'&#124;', $interestingCrawlers&#41; .')/'; [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/php/how-to-detect-search-engin-bot-using-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use wpdb On Standalone Script</title>
		<link>http://www.shouthuns.com/wordpress/use-wpdb-on-standalone-script.html</link>
		<comments>http://www.shouthuns.com/wordpress/use-wpdb-on-standalone-script.html#comments</comments>
		<pubDate>Wed, 15 Feb 2012 00:20:09 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP Functions]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=75</guid>
		<description><![CDATA[I can use the functions of wordpress wpdb in standalone scripts. This is just a simple way. By simply inserting the following code at the beginning of the script: &#60;?php $path = $_SERVER&#91;'DOCUMENT_ROOT'&#93;; include_once $path . '/wp-config.php'; include_once $path . '/wp-load.php'; include_once $path . '/wp-includes/wp-db.php'; //include_once $path . '/wp-includes/pluggable.php'; // alternate to use installed plugins [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/wordpress/use-wpdb-on-standalone-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XAMPP Error : Port Conflict</title>
		<link>http://www.shouthuns.com/serversecurity/xampp-error-port-conflict.html</link>
		<comments>http://www.shouthuns.com/serversecurity/xampp-error-port-conflict.html#comments</comments>
		<pubDate>Tue, 07 Feb 2012 04:02:41 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Server/Security]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=66</guid>
		<description><![CDATA[Have you ever had the problem experience when using XAMPP whereas your installation was running smoothly. But when you run XAMPP Control Panel and start Apache web server, it said: Possible problem detected: Port 80 in use by &#8220;system&#8221;! Open the &#8220;Services.msc&#8221; application. Click Windows Logo, then go to run box (on Win 9x and [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/serversecurity/xampp-error-port-conflict.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install ioncube on XAMPP?</title>
		<link>http://www.shouthuns.com/php/how-to-install-ioncube-on-xampp.html</link>
		<comments>http://www.shouthuns.com/php/how-to-install-ioncube-on-xampp.html#comments</comments>
		<pubDate>Wed, 01 Feb 2012 06:50:18 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server/Security]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=51</guid>
		<description><![CDATA[Here is a simple way to install ioncube on XAMPP (web server at localhost). First, download ioncube loader from http://www.ioncube.com/loaders.php Then extract to the root htdocs, usually on C:\xampp\htdocs and the root folder of ioncube loader is on C:\xampp\htdocs\ioncube Find and edit php.ini file, usually at C:\xampp\php\php.ini After downloading ioncube loader, then extract to the [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/php/how-to-install-ioncube-on-xampp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Image Illusions</title>
		<link>http://www.shouthuns.com/shouts/great-image-illusions.html</link>
		<comments>http://www.shouthuns.com/shouts/great-image-illusions.html#comments</comments>
		<pubDate>Sun, 29 Jan 2012 08:49:10 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Shouts]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=56</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.shouthuns.com/shouts/great-image-illusions.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy WordPress Installation on iPage.com</title>
		<link>http://www.shouthuns.com/shouts/easy-wordpress-installation-on-ipage-com.html</link>
		<comments>http://www.shouthuns.com/shouts/easy-wordpress-installation-on-ipage-com.html#comments</comments>
		<pubDate>Wed, 25 Jan 2012 14:18:29 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Shouts]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=54</guid>
		<description><![CDATA[You know guys? This is easy way to have WordPress on webhosting. Watch this video and you can creates WordPress Blog in a minute. Easy WordPress Installation with iPage This video&#8217;s powered by:]]></description>
		<wfw:commentRss>http://www.shouthuns.com/shouts/easy-wordpress-installation-on-ipage-com.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removes Image Whitespace using PHP</title>
		<link>http://www.shouthuns.com/php/removes-image-whitespace-using-php.html</link>
		<comments>http://www.shouthuns.com/php/removes-image-whitespace-using-php.html#comments</comments>
		<pubDate>Tue, 17 Jan 2012 02:31:27 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=53</guid>
		<description><![CDATA[To removes (trim) all white space around image (example on JPG), you can use this short code. How it&#8217;s work? It just a simple way. This script will find out where is the &#8220;WhiteSpace&#8221; stops, then it will copy everything inside the white space border. &#60;?php //load the image! it's possible to open remote image [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/php/removes-image-whitespace-using-php.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SEO Friendly for Search Result URL</title>
		<link>http://www.shouthuns.com/php/seo-friendly-for-search-result-url.html</link>
		<comments>http://www.shouthuns.com/php/seo-friendly-for-search-result-url.html#comments</comments>
		<pubDate>Mon, 12 Dec 2011 04:16:39 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP Functions]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=49</guid>
		<description><![CDATA[Here is small code to make your WordPress Search Result more friendly for SEO (Search Engine Optimization). It will result http://www.shouthuns.com/search/find-something/ instead http://www.shouthuns.com/?s=find+something Just put this code into top of the header of your themes. (Remember! It should be placed on first line on your header themes) &#60;?php $src = strtolower&#40;mysql_real_escape_string&#40;$_GET&#91;'s'&#93;&#41;&#41;; $sclear = ereg_replace&#40;&#34;[^ 0-9a-zA-Z]&#34;, [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/php/seo-friendly-for-search-result-url.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

