<?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>Tue, 03 Apr 2012 06:56:19 +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>PHP: Upload File Using FTP</title>
		<link>http://www.shouthuns.com/php/php-upload-file-using-ftp.html</link>
		<comments>http://www.shouthuns.com/php/php-upload-file-using-ftp.html#comments</comments>
		<pubDate>Tue, 03 Apr 2012 06:56:19 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP Functions]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=81</guid>
		<description><![CDATA[Here&#8217;s simple sample to use ftp method using PHP: // FTP access parameters $host = 'ftp.example.org'; $usr = 'example_user'; $pwd = 'example_password'; &#160; // file to move: $local_file = './example.txt'; $ftp_path = '/data/example.txt'; &#160; // connect to FTP server (port 21) $conn_id = ftp_connect&#40;$host, 21&#41; or die &#40;&#34;Cannot connect to host&#34;&#41;; &#160; // send access [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/php/php-upload-file-using-ftp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To chmod Recursively</title>
		<link>http://www.shouthuns.com/serversecurity/how-to-chmod-recursively.html</link>
		<comments>http://www.shouthuns.com/serversecurity/how-to-chmod-recursively.html#comments</comments>
		<pubDate>Fri, 09 Mar 2012 00:54:26 +0000</pubDate>
		<dc:creator>shouthuns</dc:creator>
				<category><![CDATA[Server/Security]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.shouthuns.com/?p=80</guid>
		<description><![CDATA[This is the simple way to recursively chmod files and folders. - This will recursively search your directory tree (starting at dir &#8216;dot&#8217;) and chmod 755 all directories only : find . -type d -exec chmod 755 {} \; - Similarly, the following will chmod all files only (and ignore the directories) : find . [...]]]></description>
		<wfw:commentRss>http://www.shouthuns.com/serversecurity/how-to-chmod-recursively.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>2</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>
	</channel>
</rss>

