<?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>gHacks technology news &#187; url</title>
	<atom:link href="http://www.ghacks.net/tag/url/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 15:18:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Passing variables using in the URL</title>
		<link>http://www.ghacks.net/2009/03/07/passing-variables-using-in-the-url/</link>
		<comments>http://www.ghacks.net/2009/03/07/passing-variables-using-in-the-url/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 22:19:07 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10983</guid>
		<description><![CDATA[If you&#8217;ve seen some Wordpress blogs or online stores you&#8217;ve probably seen url-s in the form of http://somepage.com/product.php?id=4. These sites pass variables to scripts using the url. The script will scan the url for these and you can use them in a database query for example. This is the technology that allows Wordpress templates to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve seen some Wordpress blogs or online stores you&#8217;ve probably seen url-s in the form of http://somepage.com/product.php?id=4. These sites pass variables to scripts using the url. The script will scan the url for these and you can use them in a database query for example. This is the technology that allows Wordpress templates to function, since you only need one page for all your posts.</p>
<p>Instead of creating a separate HTML page for each post we make, we enter our posts into a database. Each post is then assigned an id. We simply create one page, say posts.php and the code for that page contains a query, plus all the necessary HTML for displaying a post. This query will pull one specific post from the database and put the correct pieces where they should go in the template.  We can tell the script which one to pick by passing it a variable in the url. If the value of this variable is 135 for example, the post that will be pulled will be the one with this id.</p>
<p>You can see right away how valuable this is, you can build truly dynamic pages with this method. Your data is better organized in a database, and you can change the way you display it by simply modifying the HTML code, no need to recreate any content whatsoever. So how is this done on a code level? Let&#8217;s take a look!</p>
<p><span id="more-10983"></span></p>
<p>You need to use a PHP file obviously, and after the extension you need to write the names and the values of the variables you want to pass in the following format: http://url.com/page.php?variable=value&amp;variable=value. Notice that initially we use a question mark to separate the variable name passed from the extension, but after each subsequent variable passed we use an ampersand.</p>
<p>You can easily retrieve these variables in the code, referencing them with $_GET['variable']. For example, let&#8217;s say the url you use is the following: http://scriptastique.com/post.php?post_id=345. In this case inside the PHP file the value of $_GET['post_id'] is 345.</p>
<p>Using the &#8216;get&#8217; method you can pass strings, not just integers, so you could pass the name of the referring url, the name of a user, whatever you need. You should be aware though, that using the get method is unsafe if you want to send sensitive data. For example, you wouldn&#8217;t want to pass a user&#8217;s password from one page to another using the get method for many reasons, but mainly because it is displayed in the url bar.</p>
<p>For other things like telling a script which post you want to show, or which category you want the description for it&#8217;s fine, and a very comfortable way of organizing a huge site into just a few files, in fact, I think this is one of the best features of PHP!</p>
<p><em>If you liked this article, perhaps you&#8217;d like to take a look at <a href="http://scriptastique.com">Scriptastique</a>, which is a blog (and upcoming tutorial site) aimed at professional and aspiring coders. We just started, but there are daily posts and the tutorials (along with screencasts) are on the way!</em></p>

	Tags: <a href="http://www.ghacks.net/tag/dynamic-content/" title="dynamic content" rel="tag">dynamic content</a>, <a href="http://www.ghacks.net/tag/php/" title="php" rel="tag">php</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a>, <a href="http://www.ghacks.net/tag/variables/" title="variables" rel="tag">variables</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/29/wordpress-template-tags-you-should-know/" title="Wordpress template tags you should know (March 29, 2009)">Wordpress template tags you should know</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/02/web-development-standardizing-variables-to-code-faster/" title="Web Development: Standardizing variables to code faster (January 2, 2009)">Web Development: Standardizing variables to code faster</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/02/01/web-development-php-what-role-does-it-fill/" title="Web Development: PHP &#8211; what role does it fill (February 1, 2009)">Web Development: PHP &#8211; what role does it fill</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/08/web-development-how-does-php-work/" title="Web Development: How does PHP work? (January 8, 2009)">Web Development: How does PHP work?</a> (21)</li>
	<li><a href="http://www.ghacks.net/2009/01/05/web-development-a-brief-history-of-time/" title="Web Development: A brief history of time() (January 5, 2009)">Web Development: A brief history of time()</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/07/passing-variables-using-in-the-url/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Shrinkomatic URL Shortening With A Twist</title>
		<link>http://www.ghacks.net/2008/11/26/shrinkomatic-url-shortening-with-a-twist/</link>
		<comments>http://www.ghacks.net/2008/11/26/shrinkomatic-url-shortening-with-a-twist/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 23:04:41 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[daniel pataki]]></category>
		<category><![CDATA[online service]]></category>
		<category><![CDATA[shrinkomatic]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[url shortening]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8535</guid>
		<description><![CDATA[Ghacks author Daniel Pataki is pretty busy these days with all the new Internet websites and services that he is creating. His latest service is called Shrinkomatic. It is an url shortening service with one interesting unique feature.
But first things first. To shorten an url one would simply head over to the Shrinkomatic website and [...]]]></description>
			<content:encoded><![CDATA[<p>Ghacks author Daniel Pataki is pretty busy these days with all the new Internet websites and services that he is creating. His latest service is called Shrinkomatic. It is an url shortening service with one interesting unique feature.</p>
<p>But first things first. To shorten an url one would simply head over to the Shrinkomatic website and paste the url in the form on the main page. The service creates a unique short url in the form shrinkomatic.com/xyz which will redirect to the original url. This is definitively not the shortest url for an url shortening service but any name that is easy to remember should be fine for most users because that&#8217;s what url shortening is all about. </p>
<p>If you sign up for an account you can manage all the urls that have been created with the service. The list does contain a very nice and maintainable overview of the created urls. It also provides access to statistics detailing how many times the link was accessed (url trackin).</p>
<p><span id="more-8535"></span>The unique feature are special urls for websites. Special urls are located at their own subdirectory of the website. While this does not necessarily different to creating a single link to a website it does provide the site owner with additional statistics.</p>
<p>The site owner will see all links that point to his website by all users of the service. That&#8217;s an excellent way of keeping track of the links if the service is used a lot.</p>
<p>Daniel has some great plans for the service. Users will be able to export their links to txt or csv and also share their links with others. He has more in the pipeline but some features are to unique to be spilled yet. </p>
<p>You can read about new announcements at the <a href="http://blog.shrinkomatic.com/">Shrinkomatic blog</a> or visit <a href="http://www.shrinkomatic.com/">Shrinkomatic</a> directly to shrink some urls.</p>

	Tags: <a href="http://www.ghacks.net/tag/daniel-pataki/" title="daniel pataki" rel="tag">daniel pataki</a>, <a href="http://www.ghacks.net/tag/online-service/" title="online service" rel="tag">online service</a>, <a href="http://www.ghacks.net/tag/shrinkomatic/" title="shrinkomatic" rel="tag">shrinkomatic</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a>, <a href="http://www.ghacks.net/tag/url-shortening/" title="url shortening" rel="tag">url shortening</a>, <a href="http://www.ghacks.net/tag/web-services/" title="web services" rel="tag">web services</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/08/31/widgetize-you-website-with-yourminis/" title="Widgetize you website with Yourminis (August 31, 2007)">Widgetize you website with Yourminis</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/06/25/visual-thesaurus-vocabgrabber/" title="Visual Thesaurus VocabGrabber (June 25, 2009)">Visual Thesaurus VocabGrabber</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/06/24/view-all-registered-url-protocols/" title="View All Registered URL Protocols (June 24, 2008)">View All Registered URL Protocols</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/04/18/utorrent-port-checker-online/" title="uTorrent Port Checker Online (April 18, 2009)">uTorrent Port Checker Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/03/26/using-content-copying-websites-to-your-advantage/" title="Using Content Copying Websites To Your Advantage (March 26, 2009)">Using Content Copying Websites To Your Advantage</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/26/shrinkomatic-url-shortening-with-a-twist/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>View All Registered URL Protocols</title>
		<link>http://www.ghacks.net/2008/06/24/view-all-registered-url-protocols/</link>
		<comments>http://www.ghacks.net/2008/06/24/view-all-registered-url-protocols/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 11:57:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[nirsoft]]></category>
		<category><![CDATA[protocols]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5099</guid>
		<description><![CDATA[You might have heard of URLs before when someone referred to an Internet address as an URL. URL Protocols are for example http, mailto or ftp and they have to be registered on the system to be of any use. Each URL protocol is registered to a specific application that handles that type, the mailto [...]]]></description>
			<content:encoded><![CDATA[<p>You might have heard of URLs before when someone referred to an Internet address as an URL. URL Protocols are for example http, mailto or ftp and they have to be registered on the system to be of any use. Each URL protocol is registered to a specific application that handles that type, the mailto protocol would for example be handled by the default mail program.</p>
<p><a href="http://www.nirsoft.net/utils/url_protocol_view.html">URL Protocol View</a> displays all registered URL protocols on the system, along with a description and the path to the application that handles it. It also lists if the protocol is currently enabled on the host system.</p>
<p>The Nirsoft application provides an option to disable specific protocols on the system which can be useful to secure the system further. Does not make much sense to leave protocols enabled that are never used.</p>
<p><span id="more-5099"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/06/urlprotocolview-500x267.gif" alt="url protocol view" title="url protocol view" width="500" height="267" class="alignnone size-medium wp-image-5100" /></p>
<p>The software is portable as usual and can create a html report of the registered protocols and is compatible to all Microsoft operating systems from Windows 98 to Windows Vista. The website lists a strange Windows bug (which I have no tried myself). If you disable the mailto plugin and click on a mailto link afterward Windows will display an error message and spawn <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> windows until the system runs out of resources to spawn additional ones. Sounds like lots of fun.</p>

	Tags: <a href="http://www.ghacks.net/tag/nirsoft/" title="nirsoft" rel="tag">nirsoft</a>, <a href="http://www.ghacks.net/tag/protocols/" title="protocols" rel="tag">protocols</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/03/30/regscanner-advanced-registry-search/" title="Regscanner advanced Registry search (March 30, 2008)">Regscanner advanced Registry search</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/06/27/monitor-software-registry-changes/" title="Monitor Software Registry Changes (June 27, 2008)">Monitor Software Registry Changes</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/03/23/list-all-recently-accessed-files/" title="List all Recently Accessed Files (March 23, 2008)">List all Recently Accessed Files</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/05/01/list-all-installed-windows-updates-2/" title="List all installed Windows Updates (May 1, 2008)">List all installed Windows Updates</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/08/18/extract-resources-from-files/" title="Extract Resources From Files (August 18, 2008)">Extract Resources From Files</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/24/view-all-registered-url-protocols/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official Google url Alternatives</title>
		<link>http://www.ghacks.net/2008/01/23/alternate-official-google-urls/</link>
		<comments>http://www.ghacks.net/2008/01/23/alternate-official-google-urls/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 13:34:01 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[alternate google urls]]></category>
		<category><![CDATA[dns domain check]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[reverse ip]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/01/23/alternate-official-google-urls/</guid>
		<description><![CDATA[Did you know that Google hosts several alternate domain names on their servers that all point to the Google search engine ? Instead of accessing google.com you could use an official Google domain name like 138008.org.ru or msm.byu.edu instead to use the Google search engine. ]]></description>
			<content:encoded><![CDATA[<p>Did you know that Google hosts several alternate domain names on their servers that all point to the Google search engine ? Instead of accessing google.com you could use an official Google domain name like 138008.org.ru or msm.byu.edu instead to use the Google search engine. </p>
<p>You might be wondering why someone would want to use a different domain name to search the Internet. As we all know search terms are added to the url of the result page which means that anyone who has access to that data can analyze it and see what you have been searching for.</p>
<p>We have for instance heard of Internet Service Providers who sell this data to companies for marketing purposes. AOL released search results in the past to the public for instance which turned out to be a major privacy invasion for several of its users because it was possible to find out the real name by analyzing the search terms.</p>
<p><span id="more-2971"></span>The alternate websites do add those search terms as well but it is unlikely that they will be monitored as well. If you want to be on the safe side you could use a proxy server instead and point it to Google.com</p>
<p>Here is the list of alternate official Google.com urls:</p>
<ul>
<li>http://msm.byu.edu/</li>
<li>http://138008.org.ru/</li>
<li>http://americanlandmarkfence.com/</li>
<li>http://intranet.falmouth.ac.uk/</li>
<li>http://leslein.com/</li>
<li>http://netease.google.com/</li>
<li>http://taakra.com/</li>
<li>http://fd2k.dyndns.org/</li>
<li>http://aim.playlinc.com/</li>
<li>http://0038.za.net</li>
<li>http://cpl.playlinc.com</li>
<li>http://gamedaily.playlinc.com/</li>
<li>http://go.ogle.org/</li>
<li>http://googleffffffff8f01a7ed.sbi2testsite1.com/</li>
<li>http://lunaticus.dnip.net/</li>
<li>http://verizon.playlinc.com</li>
<li>http://yvonneschroeder.com</li>
<li>http://zapchu.ppntop50.com/</li>
</ul>
<p>Here are Google Groups Alternative urls:</p>
<ul>
<li>http://groups.secureearn.com/</li>
<li>http://groups.lanostrafamiglia.org/</li>
<li>groups.dz18.com</li>
<li></li>
</ul>
<p>You might be wondering how you can check that these urls are indeed hosted on a Google server. I used a tool called Reverse IP DNS Domain Check Tool from <a href="http://www.seologs.com/ip-domains.html">Seo logs</a> for it. Just enter an url or IP and the tool displays all other domains that are hosted on the same server.</p>
<p>Inspiration taken from <a href="http://www.labnol.org/internet/search/prevent-boss-isp-from-recording-google-search-queries/2127/">Digital Inspiration</a></p>

	Tags: <a href="http://www.ghacks.net/tag/alternate-google-urls/" title="alternate google urls" rel="tag">alternate google urls</a>, <a href="http://www.ghacks.net/tag/dns-domain-check/" title="dns domain check" rel="tag">dns domain check</a>, <a href="http://www.ghacks.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.ghacks.net/tag/reverse-ip/" title="reverse ip" rel="tag">reverse ip</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/20/youtube-videos-get-automatic-captions-1080p-videos-roll-out/" title="Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out (November 20, 2009)">Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/21/youtube-insight-find-out-who-is-embedding-your-youtube-videos/" title="Youtube Insight: Find Out Who Is Embedding Your Youtube Videos (August 21, 2009)">Youtube Insight: Find Out Who Is Embedding Your Youtube Videos</a> (0)</li>
	<li><a href="http://www.ghacks.net/2005/10/14/yahoo-vs-google-vs-msn-search-commands-compared/" title="Yahoo vs. Google vs. Msn, Search commands compared (October 14, 2005)">Yahoo vs. Google vs. Msn, Search commands compared</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/05/xoopit-to-become-yahoo-mail-exclusive/" title="Xoopit To Become Yahoo Mail Exclusive (October 5, 2009)">Xoopit To Become Yahoo Mail Exclusive</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/06/15/x-ways-to-manipulate-websites-in-firefox/" title="x Ways To Manipulate Websites In Firefox (June 15, 2009)">x Ways To Manipulate Websites In Firefox</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/01/23/alternate-official-google-urls/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Auto Copy Firefox Extension</title>
		<link>http://www.ghacks.net/2007/02/18/auto-copy-firefox-extension-2/</link>
		<comments>http://www.ghacks.net/2007/02/18/auto-copy-firefox-extension-2/#comments</comments>
		<pubDate>Sun, 18 Feb 2007 11:37:55 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[add on]]></category>
		<category><![CDATA[auto-copy]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox-add on]]></category>
		<category><![CDATA[firefox-extensions]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/02/18/auto-copy-firefox-extension-2/</guid>
		<description><![CDATA[Auto Copy is one of those Firefox extensions that are small and add new functionalities to the Mozilla Firefox. Did you ever receive a email with a link that breaks the line and uses two lines to be displayed ? It is not possible to just left-click the link to visit the website because the link is cut off after the first line. The website can't be displayed. This happens often in mails that require a confirmation after a forum registration for instance.]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/firefox/383/" target="_blank">Auto Copy</A> is one of those <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> extensions that are small and add new functionalities to the <a href="http://www.ghacks.net/tag/firefox/">Mozilla Firefox</a>. Did you ever receive a email with a link that breaks the line and uses two lines to be displayed ? It is not possible to just left-click the link to visit the website because the link is cut off after the first line. The website can&#8217;t be displayed. This happens often in mails that require a confirmation after a forum registration for instance.</p>
<p>You can right-click the link with Auto Copy installed and choose to open it in a new tab. Auto Copy opens the complete link which is simply put a great time safer. This is of course just one feature of Auto Copy. Another one which is especially helpful for webmasters that run blogs is that it &#8220;auto copies&#8221; marked text to the clipboard and lets you paste it again by using the middle mouse button.</p>
<p><span id="more-1215"></span></p>
<p>Auto Copy offers some additional features such as accessing previous clipboard entries, paste marked text to the search bar or location bar and search for an entry directly. This is one of the few extensions that every webmaster should have installed.</p>

	Tags: <a href="http://www.ghacks.net/tag/add-on/" title="add on" rel="tag">add on</a>, <a href="http://www.ghacks.net/tag/auto-copy/" title="auto-copy" rel="tag">auto-copy</a>, <a href="http://www.ghacks.net/tag/browser/" title="browser" rel="tag">browser</a>, <a href="http://www.ghacks.net/tag/firefox/" title="firefox" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/firefox-add-on/" title="firefox-add on" rel="tag">firefox-add on</a>, <a href="http://www.ghacks.net/tag/firefox-extensions/" title="firefox-extensions" rel="tag">firefox-extensions</a>, <a href="http://www.ghacks.net/tag/mozilla/" title="mozilla" rel="tag">mozilla</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/01/23/url-fixer-extension-for-firefox/" title="Url Fixer Extension for Firefox (January 23, 2007)">Url Fixer Extension for Firefox</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/11/02/numbered-tabs-for-firefox/" title="Numbered Tabs for Firefox (November 2, 2007)">Numbered Tabs for Firefox</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/28/hide-menus-in-fullscreen-with-autohide-for-firefox/" title="Hide Menus in Fullscreen with Autohide for Firefox (November 28, 2006)">Hide Menus in Fullscreen with Autohide for Firefox</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/01/11/use-splitlink-for-firefox-to-check-for-redirects/" title="Use Splitlink for Firefox to check for Redirects (January 11, 2007)">Use Splitlink for Firefox to check for Redirects</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/02/22/tab-mix-plus-firefox-extension/" title="Tab Mix Plus Firefox Extension (February 22, 2007)">Tab Mix Plus Firefox Extension</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/02/18/auto-copy-firefox-extension-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Url Fixer Extension for Firefox</title>
		<link>http://www.ghacks.net/2007/01/23/url-fixer-extension-for-firefox/</link>
		<comments>http://www.ghacks.net/2007/01/23/url-fixer-extension-for-firefox/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 11:27:43 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[add on]]></category>
		<category><![CDATA[firefox-extensions]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[typo]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[url-fixer]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/01/22/url-fixer-extension-for-firefox/</guid>
		<description><![CDATA[I'm a fast typer and it occasionally happens that I make errors when entering urls. I always hate it when I have to edit the url because i typed ghacks.nez instead of ghacks.net for instance. I'm lazy and always looking for ways to keep being lazy. Url Fixer is one of those nice little extensions for Firefox that helps me a lot when I'm using Firefox.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a fast typer and it occasionally happens that I make errors when entering urls. I always hate it when I have to edit the url because i typed ghacks.nez instead of ghacks.net for instance. I&#8217;m lazy and always looking for ways to keep being lazy. <a title="url fixer" target="_blank" href="https://addons.mozilla.org/firefox/2871/">Url Fixer</a> is one of those nice little extensions for <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> that helps me a lot when I&#8217;m using Firefox.</p>
<p>Url Fixer is auto correcting urls that have obvious errors like a unknown extension (.cor instead of .com) but also takes a look at http and https and fixes those if an error occured. It does not however work with links that you click on websites which would be really awesome to say the least.</p>
<p><span id="more-1126"></span>Url Fixer will also correct country code extensions such as .de for Germany or .co.uk for the United Kingdom. Definitely a must have add-on for Firefox.</p>

	Tags: <a href="http://www.ghacks.net/tag/add-on/" title="add on" rel="tag">add on</a>, <a href="http://www.ghacks.net/tag/firefox/" title="firefox" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/firefox-extensions/" title="firefox-extensions" rel="tag">firefox-extensions</a>, <a href="http://www.ghacks.net/tag/fix/" title="fix" rel="tag">fix</a>, <a href="http://www.ghacks.net/tag/mozilla/" title="mozilla" rel="tag">mozilla</a>, <a href="http://www.ghacks.net/tag/typo/" title="typo" rel="tag">typo</a>, <a href="http://www.ghacks.net/tag/url/" title="url" rel="tag">url</a>, <a href="http://www.ghacks.net/tag/url-fixer/" title="url-fixer" rel="tag">url-fixer</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/18/auto-copy-firefox-extension-2/" title="Auto Copy Firefox Extension (February 18, 2007)">Auto Copy Firefox Extension</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/01/11/use-splitlink-for-firefox-to-check-for-redirects/" title="Use Splitlink for Firefox to check for Redirects (January 11, 2007)">Use Splitlink for Firefox to check for Redirects</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/02/22/tab-mix-plus-firefox-extension/" title="Tab Mix Plus Firefox Extension (February 22, 2007)">Tab Mix Plus Firefox Extension</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/05/paste-and-go-in-firefox/" title="Paste and Go in Firefox (December 5, 2006)">Paste and Go in Firefox</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/11/02/numbered-tabs-for-firefox/" title="Numbered Tabs for Firefox (November 2, 2007)">Numbered Tabs for Firefox</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/01/23/url-fixer-extension-for-firefox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
