<?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>Fusion Swift</title>
	<atom:link href="http://www.fusionswift.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusionswift.com</link>
	<description>Integrating different technology</description>
	<lastBuildDate>Wed, 16 Nov 2011 12:32:24 +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>Using SOCKS Proxy in Firefox</title>
		<link>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:24:54 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[SOCKS Proxy]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=692</guid>
		<description><![CDATA[Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to Firefox -&#62; Preferences. In the Windows version of Firefox, go to Tools -&#62; Options. Go under the Advanced tab, and under the Network tab. From [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to <strong>Firefox -&gt; Preferences</strong>. In the Windows version of Firefox, go to <strong>Tools -&gt; Options</strong>.</p>
<p>Go under the <strong>Advanced</strong> tab, and under the <strong>Network</strong> tab. From there, click on <strong>Settings</strong>.</p>
<p><img class="alignnone size-full wp-image-694" title="Screen Shot 2011-10-08 at 20.33" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33.jpg" alt="" width="550" height="524" /></p>
<p>Choose <strong>Manual proxy configuration</strong>. Leave everything empty except the <strong>SOCKS Host</strong> and <strong>Port</strong>. The SOCKS host and port should be the respective host and port.</p>
<p><img class="alignnone size-full wp-image-695" title="Screen Shot 2011-10-08 at 20.33b" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33b.jpg" alt="" width="550" height="524" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Upload Multiple Files to PHP</title>
		<link>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/</link>
		<comments>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 00:45:30 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=671</guid>
		<description><![CDATA[HTML5 provides us with the ability to upload multiple files with a single &#60;input&#62; element. While it has been possible to upload several files within one form field, users had to manually select the files one by one. With a few files that may not be an issue, but it will get tedious when uploading [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 provides us with the ability to upload multiple files with a single &lt;input&gt; element. While it has been possible to upload several files within one form field, users had to manually select the files one by one. With a few files that may not be an issue, but it will get tedious when uploading a larger number of files. Previously, it has been possible for web developers to implement a similar solution in Flash, but now it can be done natively with HTML5. Here is an example on how to get the &lt;input&gt; element to allow multiple files:</p>
<pre>&lt;form action="" method="post" enctype="multipart/form-data"&gt;
	&lt;input name="uploads[]" type="file" multiple="multiple"&gt;
	&lt;input type="submit" value="Upload!"&gt;
&lt;/form&gt;</pre>
<p>Note the name of the &lt;input&gt; is uploads[], with a bracket. While the bracket is not required for multiple file selection, it is required for PHP to process the files. The following PHP snippet can be used to process the files uploaded using the code above:</p>
<pre>&lt;?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
	foreach($_FILES['uploads']['name'] as $id =&gt; $name) {
		rename($_FILES['uploads']['tmp_name'][$id], 'uploads/' . $name);
		echo "&lt;p&gt;$name uploaded successfully!&lt;/p&gt;";
	}
}
?&gt;</pre>
<p>The PHP script will take all the files uploaded and place them into a folder named &#8216;uploads&#8217;. For it to work, the uploads folder will need to exist already, and needs to be writable by the web server. It&#8217;s recommended that you <strong>DO NOT</strong> use the exact PHP script in a production environment, as it&#8217;s dangerous to not check the file being uploaded. You don&#8217;t want others uploading a malicious PHP file and executing it on your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Additional IP Addresses in Windows 2008</title>
		<link>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 13:30:31 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.fusiontech.me/?p=443</guid>
		<description><![CDATA[Start -&#62; Control Panel Click on Network and Sharing Center. On the left side under &#8216;Tasks&#8216;, click &#8216;Manage Network Connections&#8216;. Right click on &#8216;Local Area Connection&#8216; and click &#8216;Status&#8216;. From there, click on &#8216;Details&#8216;. You will be presented with a whole list of information. Note down the &#8216;IPv4 Subnet Mask&#8216;, &#8216;IPv4 Default Gateway&#8216;, and the [...]]]></description>
			<content:encoded><![CDATA[<p>Start -&gt; Control Panel</p>
<p>Click on <strong>Network and Sharing Center</strong>.</p>
<p><img class="alignnone size-full wp-image-444" title="Screen Shot 2011-09-11 at 07.54.44" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-07.54.44-.jpg" alt="" width="550" height="413" /></p>
<p>On the left side under &#8216;<strong>Tasks</strong>&#8216;, click &#8216;<strong>Manage Network Connections</strong>&#8216;.</p>
<p><img class="alignnone size-full wp-image-445" title="Screen Shot 2011-09-11 at 07.57.27" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-07.57.27-.jpg" alt="" width="550" height="245" /></p>
<p>Right click on &#8216;<strong>Local Area Connection</strong>&#8216; and click &#8216;<strong>Status</strong>&#8216;. From there, click on &#8216;<strong>Details</strong>&#8216;.</p>
<p><img class="alignnone size-full wp-image-448" title="Screen Shot 2011-09-11 at 09.11.12" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.11.12-.jpg" alt="" width="372" height="237" /></p>
<p>You will be presented with a whole list of information. Note down the &#8216;<strong>IPv4 Subnet Mask</strong>&#8216;, &#8216;<strong>IPv4 Default Gateway</strong>&#8216;, and the two &#8216;<strong>IPv4 DNS Servers</strong>&#8216;. Afterwards, simply clock <strong>Close</strong>.</p>
<p><img class="alignnone size-full wp-image-449" title="Screen Shot 2011-09-11 at 09.13.40" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.13.40-.jpg" alt="" width="372" height="435" /></p>
<p>Right click on &#8216;<strong>Local Area Connection</strong>&#8216; again and click &#8216;<strong>Properties</strong>&#8216;. Highlight &#8216;<strong>Internet Protocol Version 4 (TCP/IPv4)</strong>&#8216; and click on <strong>Properties</strong>.</p>
<p><img class="alignnone size-full wp-image-450" title="Screen Shot 2011-09-11 at 09.15.03" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.15.03-.jpg" alt="" width="369" height="462" /></p>
<p>Choose &#8216;<strong>Use the following IP address</strong>&#8216; and fill in the fields with the information provided previously when you clicked Details. This will be the settings for your first IP address.</p>
<p><img class="alignnone size-full wp-image-451" title="Screen Shot 2011-09-11 at 09.16.40" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.16.40-.jpg" alt="" width="405" height="449" /></p>
<p>To specify the additional IP addresses, click on <strong>Advanced</strong>. Click &#8216;<strong>Add</strong>&#8216; under &#8216;<strong>IP addresses</strong>&#8216; to add more IP addresses.</p>
<p><img class="alignnone size-full wp-image-452" title="Screen Shot 2011-09-11 at 09.18.43" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.18.43-.jpg" alt="" width="406" height="210" /></p>
<p>The &#8216;<strong>IP address</strong>&#8216; should be the IP address. The &#8216;<strong>Subnet mask</strong>&#8216; should be same as the one for the first IP address.</p>
<p><img class="alignnone size-full wp-image-453" title="Screen Shot 2011-09-11 at 09.21.25" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.21.25-.jpg" alt="" width="334" height="146" /></p>
<p>From there, click Add, OK, OK (and so on) to save and apply these settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing IIS 7 on Windows 2008</title>
		<link>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 02:39:35 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[IIS 7]]></category>
		<category><![CDATA[to-sort]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.fusiontech.me/?p=458</guid>
		<description><![CDATA[To begin the installation of IIS 7, go to Start -&#62; Server Manager. Scroll down to Rolls Summary, and click Add Roles. You will be presented with the Add Roles Wizard. This wizard will guide you through the installation of IIS 7. When on the Server Roles page, you will be able to select which [...]]]></description>
			<content:encoded><![CDATA[<p>To begin the installation of IIS 7, go to <strong>Start</strong> -&gt; <strong>Server Manager</strong>. Scroll down to <strong>Rolls Summary</strong>, and click <strong>Add Roles</strong>.</p>
<p><img class="alignnone size-full wp-image-459" title="Screen Shot 2011-09-11 at 09.41.16" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.16-.jpg" alt="" width="550" height="112" /></p>
<p>You will be presented with the <strong>Add Roles Wizard</strong>. This wizard will guide you through the installation of IIS 7.</p>
<p><img class="alignnone size-full wp-image-460" title="Screen Shot 2011-09-11 at 09.41.27" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.27-.jpg" alt="" width="550" height="414" /></p>
<p>When on the <strong>Server Roles</strong> page, you will be able to select which roles you wish to install. In our situation, we want to install <strong>Web Server (IIS)</strong>.</p>
<p><img class="alignnone size-full wp-image-462" title="Screen Shot 2011-09-11 at 09.42.36" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.42.36-.jpg" alt="" width="550" height="413" /></p>
<p>In order to setup the IIS web server, you will have to install a few additional features as well. You just have to click <strong>Add Required Features</strong> to install those as well.</p>
<p><img class="alignnone size-full wp-image-461" title="Screen Shot 2011-09-11 at 09.41.54" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.54-.jpg" alt="" width="550" height="206" /></p>
<p>After choosing to install IIS, you will be presented with an introduction to the web server, which will tell you a bit about the server itself. You don&#8217;t have to read it, but you may find the information helpful to know.</p>
<p><img class="alignnone size-full wp-image-463" title="Screen Shot 2011-09-11 at 09.43.35" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.35-.jpg" alt="" width="550" height="414" /></p>
<p>After reading the IIS introduction, you will have an opportunity to custom your IIS install. You can include services such as ASP.NET, ASP, CGI, SSI, among many others.</p>
<p><img class="alignnone size-full wp-image-464" title="Screen Shot 2011-09-11 at 09.43.42" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.42-.jpg" alt="" width="550" height="414" /></p>
<p>Before the actual IIS installation takes place, you will be presented with a summary of what will be installed. After reviewing the information, click <strong>Install</strong> to finally install the server.</p>
<p><img class="alignnone size-full wp-image-465" title="Screen Shot 2011-09-11 at 09.43.54" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.54-.jpg" alt="" width="550" height="414" /></p>
<p>The server installation process can take a while. The speed really depends on the server you are installing it on. It isn&#8217;t a bad time to take a coffee break or something of that sort.</p>
<p><img class="alignnone size-full wp-image-466" title="Screen Shot 2011-09-11 at 09.44.03" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.44.03-.jpg" alt="" width="550" height="413" /></p>
<p>After the installation has completed, you will be presented with the <strong>Installation Results</strong> page. Hopefully it tells you everything has been installed successfully.</p>
<p><img class="alignnone size-full wp-image-467" title="Screen Shot 2011-09-11 at 09.49.46" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.49.46-.jpg" alt="" width="550" height="413" /></p>
<p>After starting the IIS server, you will be able to test it on http://localhost/!</p>
<p><img class="alignnone size-full wp-image-468" title="Screen Shot 2011-09-11 at 09.51.11" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.51.11-.jpg" alt="" width="550" height="424" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resolving Nginx 413 Request Entity Too Large Error</title>
		<link>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 22:57:41 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Nginx]]></category>

		<guid isPermaLink="false">http://www.fusiontech.me/?p=442</guid>
		<description><![CDATA[You may receive the error 403 &#8220;Request Entity Too Large Error&#8221; when trying to upload a large file in Nginx. By default, nginx only allows files less than 1 MB. To increase that limit, you will have to add the following to your nginx.conf file: client_max_body_size 4M; The number 4 should be changed to however [...]]]></description>
			<content:encoded><![CDATA[<p>You may receive the error 403 &#8220;Request Entity Too Large Error&#8221; when trying to upload a large file in Nginx. By default, nginx only allows files less than 1 MB. To increase that limit, you will have to add the following to your nginx.conf file:</p>
<pre>client_max_body_size 4M;</pre>
<p>The number 4 should be changed to however megabytes you want the limit to be. Do note it&#8217;s 4M for 4 megabytes, rather than 4MB. After having added that to your configuration file, you should restart nginx for this change to take effect. Do note the command may differ, but should be the following if you installed from a RPM/DEB package or setup the startup script from our <a title="Nginx Startup Script" href="http://www.fusionswift.com/guides/2010/02/nginx-startup-script/">Nginx Startup Script</a> post.</p>
<pre>/etc/init.d/nginx restart</pre>
<p>Even after increasing nginx&#8217;s upload limit, the PHP limit may also be limiting how large of a file you can upload. You will want to change the post_max_size and upload_max_filesize values in your php.ini file as well. Note that if you make a change here, most likely you will have to restart the spawn-fcgi process to make the change live.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up CentOS/Fedora/RHEL with Tunnelbroker</title>
		<link>http://www.fusionswift.com/guides/2011/10/setting-up-centosfedorarhel-with-tunnelbroker/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/setting-up-centosfedorarhel-with-tunnelbroker/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 20:54:42 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[Tunnelbroker]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=704</guid>
		<description><![CDATA[Tunnelbroker allows users with only IPv4 access to access the internet via IPv6 via a tunnel, hence its name. To use Tunnelbroker, you will first need an account from their website. Make sure to use your IP address under IPv4 Endpoint and select the location closest to you for a lower latency.If you plan to [...]]]></description>
			<content:encoded><![CDATA[<p>Tunnelbroker allows users with only IPv4 access to access the internet via IPv6 via a tunnel, hence its name. To use <a href="http://www.tunnelbroker.net/" rel="nofollow" target="_blank">Tunnelbroker</a>, you will first need an account from their website. Make sure to use your IP address under IPv4 Endpoint and select the location closest to you for a lower latency.If you plan to use this tunnel on a remote server, choose the most relevant settings for that server.</p>
<p><img class="alignnone size-full wp-image-707" title="Screen Shot 2011-10-11 at 18.44" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-11-at-18.44.jpg" alt="" width="550" height="558" /></p>
<p>After proceeding, you will have an IPv6 tunnel setup for you. Now, you will have to edit the configuration files.</p>
<p><img class="alignnone size-full wp-image-709" title="Screen Shot 2011-10-11 at 18.45" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-11-at-18.45.jpg" alt="" width="550" height="582" /></p>
<p>To configure your computer/VPS to begin using the tunnel, edit the <strong>/etc/sysconfig/network</strong> file. You will need to add the following two lines. In some installs, you may have <code>NETWORKING_IPV6=no</code>, in which case you just change the no to the yes. This should be pretty self explanatory.</p>
<pre>NETWORKING_IPV6=yes
IPV6_DEFAULTGW=&lt;Server IPv6 Address without /64&gt;</pre>
<p>To complete configuring your computer to route IPv6 through tunnelbroker, you will have to create /etc/sysconfig/network-scripts/ifcfg-sit1, with the following content:</p>
<pre>DEVICE=sit1
BOOTPROTO=none
ONBOOT=yes
IPV6INIT=yes
IPV6TUNNELIPV4=&lt;Server IPv4 Address&gt;
IPV6TUNNELIPV4LOCAL=&lt;Client IPv4 Address&gt;
IPV6ADDR=&lt;Client IPv6 Address with /64&gt;</pre>
<p>For these changes to take effect, run the following command to restart your network.</p>
<pre>service network restart</pre>
<p>To test that IPv6 is working, you can ping one of the sites with IPv6 enabled (such as this site). Pinging IPv6 addresses use the ping6 command, rather than the traditional ping command.</p>
<pre>ping6 www.fusionswift.com
ping6 ipv6.google.com
ping6 www.v6.facebook.com</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/setting-up-centosfedorarhel-with-tunnelbroker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2008 Configure Remote Desktop</title>
		<link>http://www.fusionswift.com/guides/2011/10/windows-2008-configure-remote-desktop/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/windows-2008-configure-remote-desktop/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 13:40:44 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.fusiontech.me/?p=454</guid>
		<description><![CDATA[I&#8217;ve administrated Linux VPS for over two years, but hasn&#8217;t used a Windows VPS until earlier this week. Upon ordering one, I was able to access it via VNC, which was unbelievably slow. Because of that, I decided to look into Window&#8217;s Remote Desktop Protocol, which has proven to be faster than VNC. Enabling the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve administrated Linux VPS for over two years, but hasn&#8217;t used a Windows VPS until earlier this week. Upon ordering one, I was able to access it via VNC, which was unbelievably slow. Because of that, I decided to look into Window&#8217;s Remote Desktop Protocol, which has proven to be faster than VNC.</p>
<p>Enabling the Remote Desktop feature in Windows 2008 is quite simple. To begin with, go to <strong>Start</strong> -&gt; <strong>Administrative Tools</strong> -&gt; <strong>Server Manager</strong>.</p>
<p><img class="alignnone size-full wp-image-455" title="Screen Shot 2011-09-11 at 08.59.54" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-08.59.54-.jpg" alt="" width="550" height="533" /></p>
<p>Near the right of the screen under <strong>Server Summary</strong> and <strong>Computer Information</strong>, you will see a link called &#8216;<strong>Configure Remote Desktop</strong>&#8216;.</p>
<p><img class="alignnone size-full wp-image-456" title="Screen Shot 2011-09-11 at 09.00.58" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.00.58-.jpg" alt="" width="550" height="206" /></p>
<p>You will have the ability to choose between disabling RDP, allowing connections from any version of RDP, or those running &#8216;Network Level Authentication&#8217;.</p>
<p><img class="alignnone size-full wp-image-457" title="Screen Shot 2011-09-11 at 09.01.32" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.01.32-.jpg" alt="" width="411" height="461" /></p>
<p>Click OK to save the settings, and Remote Desktop should be enabled at that point. Using your favorite RDP client, you will be able to remotely connect to the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/windows-2008-configure-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Pagerank API in PHP (Updated October 2011)</title>
		<link>http://www.fusionswift.com/examples/2011/10/google-pagerank-api-in-php-october-2011/</link>
		<comments>http://www.fusionswift.com/examples/2011/10/google-pagerank-api-in-php-october-2011/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 20:33:40 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[API Example]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=700</guid>
		<description><![CDATA[The script below demonstrates the usage of the Google Pagerank API in PHP. Do note the script only works on 32 bit PHP installs, as the byte shifting does not work properly with 64 bit operating systems. We are working to provide a 64 bit alternative, although that&#8217;s not yet available. The below example features [...]]]></description>
			<content:encoded><![CDATA[<p>The script below demonstrates the usage of the Google Pagerank API in PHP. Do note the script only works on 32 bit PHP installs, as the byte shifting does not work properly with 64 bit operating systems. We are working to provide a 64 bit alternative, although that&#8217;s not yet available.</p>
<p>The below example features a PageRank class, and two lines demonstrating the usage of the class. The script is mostly self explanatory.</p>
<pre>&lt;?php

class PageRank {
	function __construct($url) {
		$url = 'info:' . $url;
		$hash = '6' . $this-&gt;c($this-&gt;e($this-&gt;b($url)));
		$fetch = 'http://toolbarqueries.google.com/tbr?client=navclient-auto&amp;ch=' . $hash . '&amp;ie=UTF-8&amp;oe=UTF-8&amp;features=Rank&amp;q=' . $url;
		if(function_exists('curl_init')) {
			$ch = curl_init();
			curl_setopt($ch, CURLOPT_URL, $fetch);
			curl_setopt($ch, CURLOPT_HEADER, 0);
			curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
			$out = curl_exec($ch);
			curl_close($ch);
		} else {
			$out = file_get_contents($fetch);
		}
		$out = trim($out);
		if(strlen($out) &gt; 0) {
			$this-&gt;pr = substr($out, 9);
		} else {
			$this-&gt;pr = -1;
		}
	}

	function b($hash) {
		$j = array();
		$length = strlen($hash);
        for($i = 0; $i &lt; $length; $i++) {
        	$j[$i] = ord($hash[$i]);
        }
        return $j;
    }
	function c($l) {
		$l = ((($l / 7) &lt;&lt; 2) | (($this-&gt;h($l, 13)) &amp; 7));
		$j = array();
		$j[0] = $l;
		for($i = 1; $i &lt; 20; $i++) {
			$j[$i] = $j[$i - 1] - 9;
		}
		$l = $this-&gt;e($this-&gt;g($j), 80);
		return $l;
	}
	function e($hash) {
		$r = 3862272608;
        $j = count($hash);
        $p = 2654435769;
        $o = 2654435769;
        $n = 3862272608;
        $l = 0;
        $m = $j;
        $q = array();
        while ($m &gt;= 12) {
            $p += ($hash[$l] + ($hash[$l + 1] &lt;&lt; 8) + ($hash[$l + 2] &lt;&lt; 16) + ($hash[$l + 3] &lt;&lt; 24));
            $o += ($hash[$l + 4] + ($hash[$l + 5] &lt;&lt; 8) + ($hash[$l + 6] &lt;&lt; 16) + ($hash[$l + 7] &lt;&lt; 24));
            $n += ($hash[$l + 8] + ($hash[$l + 9] &lt;&lt; 8) + ($hash[$l + 10] &lt;&lt; 16) + ($hash[$l + 11] &lt;&lt; 24));
            $q = $this-&gt;s($p, $o, $n);
            $p = $q[0];
            $o = $q[1];
            $n = $q[2];
            $l += 12;
            $m -= 12;
        }
        $n += $j;
        switch ($m) {
        case 11:
            $n += $hash[$l + 10] &lt;&lt; 24;
        case 10:
            $n += $hash[$l + 9] &lt;&lt; 16;
        case 9:
            $n += $hash[$l + 8] &lt;&lt; 8;
        case 8:
            $o += $hash[$l + 7] &lt;&lt; 24;
        case 7:
            $o += $hash[$l + 6] &lt;&lt; 16;
        case 6:
            $o += $hash[$l + 5] &lt;&lt; 8;
        case 5:
            $o += $hash[$l + 4];
        case 4:
            $p += $hash[$l + 3] &lt;&lt; 24;
        case 3:
            $p += $hash[$l + 2] &lt;&lt; 16;
        case 2:
            $p += $hash[$l + 1] &lt;&lt; 8;
        case 1:
            $p += $hash[$l];
        }
        $q = $this-&gt;s($p, $o, $n);
        return ($q[2] &lt; 0) ? (4294967296 + $q[2]) : $q[2];
	}
	function f($j, $i) {
        $k = 2147483648;
        if ($k &amp; $j) {
            $j = $j &gt;&gt; 1;
            $j &amp;= ~$k;
            $j |= 1073741824;
            $j = $j &gt;&gt; ($i - 1);
        } else {
            $j = $j &gt;&gt; $i;
        }
        return $j;
    }

    function g($j) {
    	$l = array();
    	$length = count($j);
    	for($k = 0; $k &lt; $length; $k++) {
    	    for ($m = $k * 4; $m &lt;= $k * 4 + 3; $m++) {
                $l[$m] = $j[$k] &amp; 255;
                $j[$k] = $this-&gt;f($j[$k], 8);
            }
    	}
        return $l;
    }

    function h($j, $l) {
        $k = floor($j / $l);
        return ($j - $k * $l);
    }
	function s($t, $k, $u) {
		$t -= $k;
		$t -= $u;
		$t ^= ($this-&gt;f($u, 13));
		$k -= $u;
		$k -= $t;
		$k ^= ($t &lt;&lt; 8);
		$u -= $t;
		$u -= $k;
		$u ^= ($this-&gt;f($k, 13));
		$t -= $k;
		$t -= $u;
		$t ^= ($this-&gt;f($u, 12));
		$k -= $u;
		$k -= $t;
		$k ^= ($t &lt;&lt; 16);
		$u -= $t;
		$u -= $k;
		$u ^= ($this-&gt;f($k, 5));
		$t -= $k;
		$t -= $u;
		$t ^= ($this-&gt;f($u, 3));
		$k -= $u;
		$k -= $t;
		$k ^= ($t &lt;&lt; 10);
		$u -= $t;
		$u -= $k;
		$u ^= ($this-&gt;f($k, 15));
		return array($t, $k, $u);
	}
}

$page_rank = new PageRank('http://www.fusionswift.com');
echo $page_rank-&gt;pr;
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/examples/2011/10/google-pagerank-api-in-php-october-2011/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Scientific Linux 6.0 (Carbon) Screenshots</title>
		<link>http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/</link>
		<comments>http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 01:24:35 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Scientific Linux]]></category>

		<guid isPermaLink="false">http://www.fusiontech.me/?p=469</guid>
		<description><![CDATA[Recently I have been exploring various different Linux distros, and one of them is Scientific Linux. Below are some screenshots of Scientific Linux (Live CD). Scientific Linux preparing to boot SL login screen SL&#8217;s desktop under GNOME desktop manager SL&#8217;s desktop under Ice desktop manager SL running Firefox under Ice]]></description>
			<content:encoded><![CDATA[<p>Recently I have been exploring various different Linux distros, and one of them is Scientific Linux. Below are some screenshots of Scientific Linux (Live CD).</p>

<a href='http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/attachment/screen-sharing-picture-1/' title='Screen Sharing Picture 1'><img width="150" height="150" src="http://www.fusionswift.com/files/2011/09/Screen-Sharing-Picture-1-150x150.jpg" class="attachment-thumbnail" alt="Screen Sharing Picture 1" title="Screen Sharing Picture 1" /></a>
<a href='http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/attachment/screen-sharing-picture-2/' title='Screen Sharing Picture 2'><img width="150" height="150" src="http://www.fusionswift.com/files/2011/09/Screen-Sharing-Picture-2-150x150.jpg" class="attachment-thumbnail" alt="Screen Sharing Picture 2" title="Screen Sharing Picture 2" /></a>
<a href='http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/attachment/screen-sharing-picture-3/' title='Screen Sharing Picture 3'><img width="150" height="150" src="http://www.fusionswift.com/files/2011/09/Screen-Sharing-Picture-3-150x150.jpg" class="attachment-thumbnail" alt="Screen Sharing Picture 3" title="Screen Sharing Picture 3" /></a>
<a href='http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/attachment/screen-sharing-picture-4/' title='Screen Sharing Picture 4'><img width="150" height="150" src="http://www.fusionswift.com/files/2011/09/Screen-Sharing-Picture-4-150x150.jpg" class="attachment-thumbnail" alt="Screen Sharing Picture 4" title="Screen Sharing Picture 4" /></a>
<a href='http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/attachment/screen-sharing-picture-5/' title='Screen Sharing Picture 5'><img width="150" height="150" src="http://www.fusionswift.com/files/2011/09/Screen-Sharing-Picture-5-150x150.jpg" class="attachment-thumbnail" alt="Screen Sharing Picture 5" title="Screen Sharing Picture 5" /></a>

<ol>
<li>Scientific Linux preparing to boot</li>
<li>SL login screen</li>
<li>SL&#8217;s desktop under GNOME desktop manager</li>
<li>SL&#8217;s desktop under Ice desktop manager</li>
<li>SL running Firefox under Ice</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/screenshots/2011/10/scientific-linux-6-0-carbon-screenshots/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Splitting Post Into Multiple Pages in WordPress</title>
		<link>http://www.fusionswift.com/guides/2011/10/splitting-post-into-multiple-pages-in-wordpress/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/splitting-post-into-multiple-pages-in-wordpress/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 05:19:16 +0000</pubDate>
		<dc:creator>John Tiki</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=685</guid>
		<description><![CDATA[One powerful but rarely used feature in WordPress is the paginated post feature. To split a blog post or a page into multiple sections, simply add this comment where you want the page to split: &#60;!--nextpage--&#62; Do note that not all themes support this feature. If your theme does not show pagination, simply add the [...]]]></description>
			<content:encoded><![CDATA[<p>One powerful but rarely used feature in WordPress is the paginated post feature. To split a blog post or a page into multiple sections, simply add this comment where you want the page to split:</p>
<pre>&lt;!--nextpage--&gt;</pre>
<p>Do note that not all themes support this feature. If your theme does not show pagination, simply add the following to your index.php, single.php, and page.php of your theme files (it must be placed within the WordPress loop):</p>
<pre>&lt;?php wp_link_pages(); ?&gt;</pre>
<p>Just as with any other element of WordPress, you have the ability to customize its layout with CSS. You can see our own pagination customization on our <a href="http://www.fusionswift.com/screenshots/2011/09/windows-8-developer-preview-screenshots/">Windows 8 Screenshot</a> post.</p>
<p><img class="alignnone size-full wp-image-686" title="Screen Shot 2011-10-05 at 21.20.46" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-05-at-21.20.46-.jpg" alt="" width="370" height="159" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/splitting-post-into-multiple-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.402 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 23:04:56 -->

