<?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>MakeUseOf.com &#187; hamachi</title>
	<atom:link href="http://www.makeuseof.com/tags/hamachi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Sun, 22 Nov 2009 14:00:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Set Up Your Own WampServer</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/</link>
		<comments>http://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 20:01:45 +0000</pubDate>
		<dc:creator>Dave Drager</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[hamachi]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=5930</guid>
		<description><![CDATA[There once was a great cat, named the WAMPUS cat. However, this article is not about that cat. This article is about a server. A great majority of websites are run by a trio of services &#8211; Apache, MySQL and PHP. Apache is the web server, which handles browser requests and sends the information across [...]]]></description>
			<content:encoded><![CDATA[<p>There once was a great cat, named the <a href="http://en.wikipedia.org/wiki/Wampus_cat">WAMPUS cat</a>. However, this article is not about that cat. This article is about a server. A great majority of websites are run by a trio of services &#8211; <a href="http://httpd.apache.org/">Apache</a>, <a href="http://www.mysql.com/">MySQL</a> and <a href="http://www.php.net/">PHP</a>. Apache is the web server, which handles browser requests and sends the information across the internet to your browser. PHP is the programming language that many sites are written in &#8211; this creates dynamic content which in turn is sent to Apache, which sends the data to your browser. And finally, MySQL is the database which stores the information for programs. PHP is used to access this database.</p>
<p><img class="aligncenter size-full wp-image-5938" title="AMP" src="http://www.makeuseof.com/wp-content/uploads/2008/09/wamp2.gif" alt="AMP" /></p>
<p>It is a tried and tested trio which works phenomenally well. Usually to gain access to this trifecta, you need to purchase hosting, and this hosting is usually run in a far away datacenter running on a Linux server. However, not many people know that it is available locally, and for Windows as well. You can use these services for running your own applications, and also for locally testing software you are writing, before uploading code to a production server.</p>
<p>WAMP stands for <strong>W</strong>indows <strong>A</strong>pache, <strong>M</strong>ySQL and <strong>P</strong>HP. Compare this to LAMP, which is <strong>A</strong>pache, <strong>M</strong>ySQL and <strong>P</strong>HP on <strong>L</strong>inux.</p>
<p>There are several ways to get these services running locally. Each service, by itself, has Windows installers. That being said &#8211; once the programs are installed, you need to know how to configure the services. That may not be simple unless you happen to be a system administrator.</p>
<p>We are going to focus on <a href="http://www.wampserver.com/en/index.php">WampServer</a>. In my experience, using WampServer is the fastest way to get up and running. <a href="http://en.wikipedia.org/wiki/Comparison_of_WAMPs">Wikipedia</a> has a nice list of all Wamp servers.</p>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/09/wamp4.gif" border="0" alt="" align="left" /></p>
<h2>Step 1</h2>
<p>Download the <a href="http://www.wampserver.com/en/download.php">latest WampServer</a>. As of the writing of this article, it includes Apache 2.2, PHP 5.2 and MySQL 5.0.</p>
<h2>Step 2</h2>
<p>Run the installer. It will warn you to uninstall WAMP5 1.x if you have installed that already. You can use the defaults and it should install without problem.</p>
<h2>Step 3</h2>
<p>Start the services. You will see a small icon in your taskbar. Left click on it (right clicking does not display the right menu) and select &#8220;go online&#8221;. The icon will then make a little animation, and your services will be online. You can view your homepage by going to http://localhost/.</p>
<p>Thats it! Wamp is now running. You are ready to install your application, or start learning some PHP! The public website directory is &#8216;<strong>c:\wamp\www\</strong>&#8216;.</p>
<p>Any directory you create in this directory, shows up as a &#8216;project&#8217; on the main index page.</p>
<h2>Advanced Settings</h2>
<p><strong>PHP Customization</strong><br />
<img src="http://www.makeuseof.com/wp-content/uploads/2008/09/wamp3.gif" alt="" align="right" /></p>
<p>Depending on which type of program you want to install onto your server, you may require additional extensions that are not loaded by default. There are a whole variety of PHP extensions you can load that come built in, but disabled. Left-click on the Wamp menu, go to PHP-&gt;PHP Extensions and click off the extension you would like to reload.</p>
<p>You can also edit the configuration file, php.ini through the menu. Edit anything you need, and save this file. The most common edit is the memory_size, but there are many options you can tweak to your liking.</p>
<p>After making any changes to php, make sure you reload apache. I&#8217;ve learned the hard way that changes aren&#8217;t automatically pushed to the server, until it is reloaded.</p>
<p><strong>Apache Customization</strong></p>
<p>For you advanced tinkerers out there, you can tweak the apache configuration files to your heart&#8217;s content. Make sure after making any changes, to reload apache.</p>
<p><strong>MySQL Customization</strong></p>
<p>Depending on your project, you may need to create a database in MySQL. This can be done through phpMyAdmin, which is handily included within the WAMPServer install. By default they include no password on the root MySQL user, which is not the best thing for security reasons. I would recommend changing this password. phpMyAdmin can be reached via the Wamp Menu, or via the url http://localhost/phpmyadmin/</p>
<h3>In Summary:</h3>
<p>Don&#8217;t let the fun stop there. Install a blog and start experimenting with PHP and templates. Run your own Wiki. Run your own music server. The howtos on how to install some neat programs are coming in some future articles.</p>
<p>One of the greatest things about running a home apache server, is that you can use it in combination with a VPN (<a href="http://www.makeuseof.com/tag/creating-your-own-personal-virtual-private-network-with-hamachi/">Hamachi</a>) to access your server anywhere in the world, securely. You can even change your setup to host pages to the outside world, if you so desire.</p>
<p>There is no limit to what you can do! OK, maybe it won&#8217;t cook you breakfast in the morning &#8211; not yet anyway!</p>
<p>Please let me know if you have any questions, comments, or need help with the install!
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/how-to-set-up-an-instant-private-network-with-remobo/" title="How To Set Up An Instant Private Network With Remobo (August 16, 2008)">How To Set Up An Instant Private Network With Remobo</a> (20)</li>
	<li><a href="http://www.makeuseof.com/tag/building-your-own-local-wordpress-blog/" title="How To Install Wordpress Blog Locally On Your PC (January 2, 2009)">How To Install Wordpress Blog Locally On Your PC</a> (23)</li>
	<li><a href="http://www.makeuseof.com/tag/speed-up-your-wordpress-blog-with-php-speedy/" title="Speed Up Your WordPress Blog With PHP Speedy (January 23, 2009)">Speed Up Your WordPress Blog With PHP Speedy</a> (17)</li>
	<li><a href="http://www.makeuseof.com/tag/quick-tip-stop-pidgin-spam-in-its-tracks-with-bot-sentry/" title="[Quick Tip] Stop Pidgin Spam in Its Tracks with Bot Sentry (February 29, 2008)">[Quick Tip] Stop Pidgin Spam in Its Tracks with Bot Sentry</a> (26)</li>
	<li><a href="http://www.makeuseof.com/tag/winhack-how-to-change-the-windows-start-button-win-xp/" title="WinHack &#8211; How to Change the Windows Start Button (Win XP) (September 19, 2008)">WinHack &#8211; How to Change the Windows Start Button (Win XP)</a> (20)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How To Set Up An Instant Private Network With Remobo</title>
		<link>http://www.makeuseof.com/tag/how-to-set-up-an-instant-private-network-with-remobo/</link>
		<comments>http://www.makeuseof.com/tag/how-to-set-up-an-instant-private-network-with-remobo/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 16:01:13 +0000</pubDate>
		<dc:creator>Varun Kashyap</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[hamachi]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[remote access]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=4621</guid>
		<description><![CDATA[What happens when BitTorrent meets Hamachi meets remote desktop meets networking?  Well you get something similar to Remobo. Remobo lets you create an IPN which is an Instant Private Network.
Lets see what you can do with an IPN, Remobo and how to set it all up.
Remobo allows you to:

Control your own computer remotely from [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/08/logo.png" alt="remobo" width="300" height="125" align="left" />What happens when BitTorrent meets <a href="http://www.makeuseof.com/tag/creating-your-own-personal-virtual-private-network-with-hamachi/">Hamachi</a> meets remote desktop meets networking?  Well you get something similar to <a href="http://www.remobo.com">Remobo</a>. Remobo lets you create an IPN which is an Instant Private Network.</p>
<p>Lets see what you can do with an IPN, Remobo and how to set it all up.</p>
<p>Remobo allows you to:</p>
<ul>
<li><strong>Control</strong> your own computer remotely from any other computer.</li>
<li> <strong>Access</strong> your files securely from work or while traveling.</li>
<li> <strong>Share</strong> files, photos and media with friends &amp; family on your network.</li>
<li> <strong>Secure</strong> all your messages and file transfers against hackers.</li>
<li> <strong>Create</strong> a virtual private network (VPN) instantly and securely.</li>
<li> <strong>Play</strong> LAN games over the internet as if you were all in the same place.</li>
<li> <strong>Connect</strong> to any computer in your list securely to access files and data.</li>
<li><strong>Run</strong> virtually any 3rd party application on top of Remobo.</li>
</ul>
<p>Quite a handful isn&#8217;t it? Lets set it all up!</p>
<h2>Download and Install</h2>
<p>Simply <a href="http://www.remobo.com/download.php">download</a> and install. It will try to install a BitTorrent client (which will be required later as you will see) so if you already have your own, you can say no to this. While setting up the virtual network driver Windows will warn you.  Click &#8216;continue&#8217; and you should be good to go.</p>
<h2>Set up an account</h2>
<p>Set up a Remobo account. Simple and easy, no fuss. Requires an email address.</p>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/08/newaccount.png" alt="new account" width="463" height="406" /></p>
<h2>Add buddies</h2>
<p>When Remobo starts, it asks you for the account details you just set up. Log in and then  click on the button labelled &#8220;Menu&#8221; and then add one of your buddies on the Remobo network. You would have to enter the username of your buddy and your buddy will have to approve your request. This is unlike Hamachi where you create a network where others can join.</p>
<p>Remobo actually supports more than one PC per account, so you can have multiple entries under one buddy. This simply translates to the various computers of your buddy that you can access. This also means that you can use the same account on more than one computer. So you can have your work and home PC listed under the same username.</p>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/08/client.png" alt="client" width="304" height="379" /></p>
<h2>Let&#8217;s MakeUseOf Remobo</h2>
<p>This little menu is all you have to take note of for being a Remobo King!</p>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/08/menu.png" alt="men" width="208" height="209" /></p>
<h3>Send files</h3>
<p>Files are sent using BitTorrent. Click on <strong>&#8220;Send a File&#8221;</strong> and you will be presented with an option to choose the files and folders to share, choose them and specify if you want to share this one time only or keep it shared for longer.  Remobo will now automagically create a torrent and send the torrent file to the other side (to the buddy). The other side can then download the torrent file and use any BitTorrent client to download the file. This increases in significance if you are sharing a file with a group!</p>
<h3>View Shared files</h3>
<p>Clicking on <strong>&#8220;View Shared Files&#8221;</strong> will open up a webpage that allows you to view all the shared files (yours and others&#8217;) and also allows you to browse the files categorized by usernames so that you know who is sharing which file..</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2008/08/sharedfiles.png" alt="shared files" width="580" height="265" /></p>
<h3>Windows File Sharing</h3>
<p>Don&#8217;t want to use Bittorrent for some reason?  Well no problem you can try <strong>&#8220;Windows File Sharing&#8221;</strong> just as you would do on a LAN. Just that it is a lot more simple here. When I clicked on it I was hoping to go through a messy workgroup setup and complicated network settings, but  what did I see? I saw the shared printer and shared docs (in other words, it&#8217;s already done and I did nothing). Yes that&#8217;s how simple it is. Depending upon your situation you may be prompted for a password  or do some minor configurations here.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2008/08/share.png" alt="shared" width="580" height="440" /></p>
<h3>Play games, Stream Media</h3>
<p>Basically you can run any 3rd party application atop of Remobo. Want to play any game with your buddy just like you would have played it on the LAN? Easy, hover your mouse over the buddy name and get the IP. This is the virtual IP or the Remobo IP. Use this for streaming media configuration or playing games over the network.</p>
<h3>Control Computer from other computers</h3>
<p>Click one of the computer names that you want to access. Choose <strong>&#8220;Remote Control&#8221;</strong> from the menu that shows up. Enter your buddy&#8217;s password and you&#8217;ll get remote access to that computer. The whole password situation used for Remote Control bothers me a bit. While this is fine if you are in a work/home scenario, this might not be a good idea in the &#8220;buddy&#8221; scenario as the Remobo password and the Remote Control password  are the same. So if you know someone&#8217;s remote control password, you know their account password. Kinda lame?</p>
<h3>Chat</h3>
<p>I am not going to tell you how you can chat with Remobo. This is just for you to know, that you can chat as well!</p>
<h3>Secure Connections</h3>
<p>All the connections are secure and encrypted so your data is secure!</p>
<h3>Domain Names</h3>
<p>Don&#8217;t like remembering IP addresses? Well just use &lt;username&gt;.remobo.com and you don&#8217;t need to remember any IP address. In case of multiple computer setups use &lt;username&gt;.&lt;computername&gt;.remobo.com</p>
<h3>Community</h3>
<p>There is a great Remobo community over there. You can make feature requests, get skins, discuss problems and see how others are using Remobo.</p>
<p>All in all a great application. There is the password issue that I mentioned and some dialogs that I feel are redundant, but overall it greatly simplifies the whole process or sharing files, using BitTorrent to send files, VPN setup and Remote Desktop.</p>
<p>It&#8217;s still in beta and I am sure it will mature as it grows. If you thought Hamachi was easy and feature rich (or otherwise) try Remobo, you&#8217;ll have no idea!</p>
<p>Let us know what you think about it.  Have you tried it? Or do you plan to stick with Hamachi or some other application?</p>
<p><em>(By) Varun Kashyap, who is getting absent minded and forget to  mention his name in the last two articles. And before he forgets, he would like to invite you to his <a href="http://varunkashyap.wordpress.com">TechCrazy Blog</a>, where he writes about latest on the web, tech tips, tweaks and hacks. </em>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/remotely-access-and-manage-your-torrents/" title="How to Access your Torrent Client &#038; Download Torrents Remotely (October 21, 2008)">How to Access your Torrent Client &#038; Download Torrents Remotely</a> (15)</li>
	<li><a href="http://www.makeuseof.com/tag/creating-your-own-personal-virtual-private-network-with-hamachi/" title="Creating Your Own Personal Virtual Private Network with Hamachi (July 30, 2008)">Creating Your Own Personal Virtual Private Network with Hamachi</a> (25)</li>
	<li><a href="http://www.makeuseof.com/tag/want-webex-like-control-over-a-remote-machine-for-free/" title="Want WebEx-like Control Over A Remote Computer For Free? (November 8, 2008)">Want WebEx-like Control Over A Remote Computer For Free?</a> (21)</li>
	<li><a href="http://www.makeuseof.com/tag/top-sites-that-every-bittorrent-user-should-know-about/" title="Top Torrent Search Engines for All Torrent Downloaders (January 17, 2009)">Top Torrent Search Engines for All Torrent Downloaders</a> (23)</li>
	<li><a href="http://www.makeuseof.com/tag/top-6-torrent-alternatives-to-pirate-bay-downloads/" title="Top 6 Torrent Alternatives To The Pirate Bay (August 16, 2009)">Top 6 Torrent Alternatives To The Pirate Bay</a> (30)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-set-up-an-instant-private-network-with-remobo/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
