<?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>JasonSamuel.com &#187; firefox</title>
	<atom:link href="http://www.jasonsamuel.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonsamuel.com</link>
	<description>Cool stuff I see in the IT world</description>
	<lastBuildDate>Wed, 25 Jan 2012 21:05:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Greasemonkey script to automatically redirect image host requests to a mirror site</title>
		<link>http://www.jasonsamuel.com/2011/09/19/greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site</link>
		<comments>http://www.jasonsamuel.com/2011/09/19/greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 14:53:11 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey script]]></category>
		<category><![CDATA[image mirror]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=1253</guid>
		<description><![CDATA[Sometimes you can&#8217;t get to an image host because it is down or has exceeded it&#8217;s allotted bandwidth. If the host has a mirror (many do these days), you can use this Greasemonkey script to pass requests to the mirror automatically. Just replace &#8220;originalimagehost&#8221; and &#8220;newmirror&#8221; with the correct names and replace &#8220;domain&#8221; with the [...]<p><a href="http://www.jasonsamuel.com/2011/09/19/greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site/">Greasemonkey script to automatically redirect image host requests to a mirror site</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>

More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2009/08/11/changing-the-host-header-for-an-already-existing-sharepoint-site-application/' rel='bookmark' title='Changing the host header for an already existing Sharepoint site/application'>Changing the host header for an already existing Sharepoint site/application</a></li>
<li><a href='http://www.jasonsamuel.com/2011/01/06/change-all-http-requests-to-ssl-https-on-a-netscaler/' rel='bookmark' title='Change all HTTP requests to SSL/HTTPS on a Netscaler'>Change all HTTP requests to SSL/HTTPS on a Netscaler</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sometimes you can&#8217;t get to an image host because it is down or has exceeded it&#8217;s allotted bandwidth.  If the host has a mirror (many do these days), you can use this Greasemonkey script to pass requests to the mirror automatically.  Just replace &#8220;originalimagehost&#8221; and &#8220;newmirror&#8221; with the correct names and replace &#8220;domain&#8221; with the name of the sites you want the script to run on and it should work.  Most mirrors I have seen have a script path so add that in under &#8220;scriptpath&#8221; if yours does or remove it if it doesn&#8217;t:</p>
<p><pre><code>
// ==UserScript==
// @name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; imagehost redirect
// @namespace&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imagehost redirect
// @description&nbsp;&nbsp;&nbsp;&nbsp;Replaces all primary image host links with mirror links
// @include&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://*.domain.com/*
// @include&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://domain.com/*
// ==/UserScript==

var a = document.getElementsByTagName(&#039;a&#039;);
for (i=0;i&lt;a.length;i++) {
&nbsp;&nbsp;p = /originalimagehost\.com\/([A-Za-z0-9]+)/;
&nbsp;&nbsp;res = p.exec(a[i]);

&nbsp;&nbsp;if (res!=null) {
&nbsp;&nbsp;&nbsp;&nbsp;a[i].href = &#039;http://www.newmirror.com/scriptpath/?&#039; + res[1] + &#039;.jpg&#039;;
&nbsp;&nbsp;}
}
</code></pre></p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2011/09/greasemonkey-scripts-logo.jpg"><img src="http://www.jasonsamuel.com/wp-content/uploads/2011/09/greasemonkey-scripts-logo.jpg" alt="" title="greasemonkey-scripts-logo" width="253" height="63" class="aligncenter size-full wp-image-1256" /></a></p>
<p><a href="http://www.jasonsamuel.com/2011/09/19/greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site/">Greasemonkey script to automatically redirect image host requests to a mirror site</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>
<p>More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2009/08/11/changing-the-host-header-for-an-already-existing-sharepoint-site-application/' rel='bookmark' title='Changing the host header for an already existing Sharepoint site/application'>Changing the host header for an already existing Sharepoint site/application</a></li>
<li><a href='http://www.jasonsamuel.com/2011/01/06/change-all-http-requests-to-ssl-https-on-a-netscaler/' rel='bookmark' title='Change all HTTP requests to SSL/HTTPS on a Netscaler'>Change all HTTP requests to SSL/HTTPS on a Netscaler</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2011/09/19/greasemonkey-script-to-automatically-redirect-image-host-requests-to-a-mirror-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Firefox in an environment with roaming profiles</title>
		<link>http://www.jasonsamuel.com/2011/08/02/using-firefox-in-an-environment-with-roaming-profiles/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-firefox-in-an-environment-with-roaming-profiles</link>
		<comments>http://www.jasonsamuel.com/2011/08/02/using-firefox-in-an-environment-with-roaming-profiles/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 16:29:50 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[Citrix XenApp]]></category>
		<category><![CDATA[Citrix XenDesktop]]></category>
		<category><![CDATA[VMware View]]></category>
		<category><![CDATA[citrix xenapp]]></category>
		<category><![CDATA[citrix xendesktop]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[roaming profiles]]></category>
		<category><![CDATA[vmware view]]></category>
		<category><![CDATA[xenapp]]></category>
		<category><![CDATA[xendesktop]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=1093</guid>
		<description><![CDATA[By default, Firefox stores it&#8217;s profile cache in &#34;C:\Documents and Settings\yourusername\Application Data\Mozilla\Firefox\Profiles&#34;. This can be problematic when using roaming profiles with a limited amount of profile storage space due to quotas. As you add extensions, it grows even bigger. This is a big problem in XenApp/XenDesktop/View and other VDI environments using roaming profiles. You&#8217;ll soon [...]<p><a href="http://www.jasonsamuel.com/2011/08/02/using-firefox-in-an-environment-with-roaming-profiles/">Using Firefox in an environment with roaming profiles</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>By default, Firefox stores it&#8217;s profile cache in <code>&quot;C:\Documents and Settings\yourusername\Application Data\Mozilla\Firefox\Profiles&quot;</code>.  This can be problematic when using roaming profiles with a limited amount of profile storage space due to quotas.  As you add extensions, it grows even bigger.  This is a big problem in XenApp/XenDesktop/View and other VDI environments using roaming profiles.  You&#8217;ll soon start getting errors saying you are almost out of profile storage space or that you have exceeded your profile storage space.  Something like this (note I just grabbed this screenshot from a Google Image Search, you would normally see a bunch of Mozilla Firefox related files in there eating up the space):</p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2011/08/Profile-Storage-Space-out-of-space.jpg"><img src="http://www.jasonsamuel.com/wp-content/uploads/2011/08/Profile-Storage-Space-out-of-space.jpg" alt="" title="Profile Storage Space out of space" width="387" height="391" class="aligncenter size-full wp-image-1106" /></a></p>
<p>The solution is to move the profile out of the user folder and into another local folder or onto a network drive/home folder, thus reclaiming the profile storage space.  For example, I created <code>&quot;c:\FireFoxProfile&quot;</code> to house the profile.  Here is what you need to do to begin using this folder:</p>
<p>1. Edit <code>&quot;C:\Documents and Settings\yourusername\Application Data\Mozilla\Firefox\profiles.ini&quot;</code> in Notepad and change:</p>
<p><code>IsRelative=1</code></p>
<p>to</p>
<p><code>IsRelative=0</code></p>
<p>What this does is allow you to use an explicit path that you specify for the profile.</p>
<p>2.  Change the next line from:</p>
<p><code>Path=Profiles/xxxxxxx.default</code></p>
<p>to</p>
<p><code>Path=c:\FireFoxProfile\xxxxxxx.default</code></p>
<p>3.  Save profile.ini and restart Firefox.  You will notice that immediately, the new profile folder is populated.  Keep in mind when you open Firefox for the first time, it will be like a brand new install and you will lose all of your bookmarks, extensions, customizations, etc. unless you restore them from the old path.  </p>
<p>4. You can delete everything in your old profile path once you have Firefox working in the new profile path.  This will immediately reclaim your roaming profile storage space.</p>
<p>NOTE:  If deploying to the entire corporation, there are other methods to centrally manage Firefox and control the deployment.  This solution is good for the one off users though.</p>
<p><a href="http://www.jasonsamuel.com/2011/08/02/using-firefox-in-an-environment-with-roaming-profiles/">Using Firefox in an environment with roaming profiles</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2011/08/02/using-firefox-in-an-environment-with-roaming-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to edit Word and Excel documents in Sharepoint 2007 using Firefox</title>
		<link>http://www.jasonsamuel.com/2010/04/08/how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox</link>
		<comments>http://www.jasonsamuel.com/2010/04/08/how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:58:03 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=350</guid>
		<description><![CDATA[Yes, we all know how much of a pain it can be when you want to edit an Excel or Word document in Firefox but it opens up in Read Only mode.  With IE 8 and Office 2007, you would get a popup like this asking what you want to do when you left click [...]<p><a href="http://www.jasonsamuel.com/2010/04/08/how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox/">How to edit Word and Excel documents in Sharepoint 2007 using Firefox</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>

More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/' rel='bookmark' title='Getting Firefox to pass Active Directory credentials to Sharepoint 2007'>Getting Firefox to pass Active Directory credentials to Sharepoint 2007</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/05/my-favorite-3rd-party-sharepoint-2007-add-ons/' rel='bookmark' title='My favorite 3rd party Sharepoint 2007 add-ons'>My favorite 3rd party Sharepoint 2007 add-ons</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/15/how-do-you-get-sharepoint-2007-to-read-and-index-content-inside-a-pdf-file/' rel='bookmark' title='How do you get SharePoint 2007 to read and index content inside a PDF file?'>How do you get SharePoint 2007 to read and index content inside a PDF file?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yes, we all know how much of a pain it can be when you want to edit an Excel or Word document in Firefox but it opens up in Read Only mode.  With IE 8 and Office 2007, you would get a popup like this asking what you want to do when you left click on a document:</p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2010/04/sharepoint-firefox-explorer-view-1.gif"><img class="alignnone size-medium wp-image-351" title="sharepoint-firefox-explorer-view-1" src="http://www.jasonsamuel.com/wp-content/uploads/2010/04/sharepoint-firefox-explorer-view-1-300x220.gif" alt="" width="300" height="220" /></a></p>
<p>but in Firefox, you only get to download the document.  No option to edit it like this:</p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2010/04/sharepoint-firefox-explorer-view-2.gif"><img class="alignnone size-medium wp-image-352" title="sharepoint-firefox-explorer-view-2" src="http://www.jasonsamuel.com/wp-content/uploads/2010/04/sharepoint-firefox-explorer-view-2-300x218.gif" alt="" width="300" height="218" /></a></p>
<p>The quick solution I found that works for me is to install a couple of plugins for Firefox.  There are 2 ways to get around this:</p>
<p><strong>1. Install the Coral IE Tab plugin</strong> &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/10909" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/10909</a>- This allows you to switch whatever page you are looking at into a page rendered by IE but you are still in your Firefox tab.  You can also right click on your page in Firefox and open it in a new tab using IE so you have both versions.  Just use the &#8220;Switch Rendering Engine&#8221; option.  You can also have it actually open up in IE as well in a brand new IE window.  I PREFER CORAL IE over any other plugin because look how easy it is to change your rendering engine.  Just click the icon in the bottom right and your page is displayed in that browser . <img src='http://www.jasonsamuel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Firefox + Sharepoint:</p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2010/04/firefox-coral-ie.gif"><img class="alignnone size-medium wp-image-369" title="firefox-coral-ie" src="http://www.jasonsamuel.com/wp-content/uploads/2010/04/firefox-coral-ie-300x225.gif" alt="" width="300" height="225" /></a></p>
<p>IE being rendered in Firefox + Sharepoint:</p>
<p><a href="http://www.jasonsamuel.com/wp-content/uploads/2010/04/ie-coral-ie.gif"><img class="alignnone size-medium wp-image-370" title="ie-coral-ie" src="http://www.jasonsamuel.com/wp-content/uploads/2010/04/ie-coral-ie-300x198.gif" alt="" width="300" height="198" /></a></p>
<p><strong>2. Install the IE View Lite plugin</strong> &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/1429" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/1429</a> &#8211; This allows you to to right click on a page and quickly load the page up in a new IE window.  Kind of like Coral IE but a &#8220;lite&#8221; version of it that only allows opening up a secondary window.</p>
<p>I know, not the easiest solution but it works for now until I find a better way.  MS treats Firefox like a second class browser with no AJAX or rich text editing for some reason.  All this will change with Sharepoint 2010 but for the great majority of the world that will remain on Sharepoint 2007 for a while, we have to come up with workarounds.  Looking forward to May 12th, 2010 when it&#8217;s officially released along with Office 2010. <img src='http://www.jasonsamuel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You&#8217;ll notice a lot of nice little features you are used to in IE missing when browsing your Sharepoint site with Firefox because of this.  One thing I miss but haven&#8217;t looked into is getting the &#8220;Open with Windows Explorer&#8221; action back.  This &#8220;Explorer View&#8221; uses WebDav (<a href="http://en.wikipedia.org/wiki/WebDAV" target="_blank">http://en.wikipedia.org/wiki/WebDAV</a>) to open a connection straight to your Sharepoint document library in a familiar Windows Explorer interface making it easy for end users to upload, move, rename, etc. in bulk. I am heavily dependent on this feature myself.  I&#8217;m thinking Firefox has to have some kind of WebDav plugin installed to get this working.  I&#8217;ll look into it and post here if I find something.</p>
<p>One thing to note, and I haven&#8217;t tried it yet, is that some guys over at Codplex are working on some basic Sharepoint 2007 + Firefox integration here:</p>
<p><a href="http://wssfirefox.codeplex.com" target="_blank">http://wssfirefox.codeplex.com</a></p>
<p>The only reason I haven&#8217;t tried it out is because of the server side components that need to be installed.  I need to get around to trying it on one of my test farms at some point.  Most enterprises are not going to support Firefox anyhow so it&#8217;s not a priority issue to get resolved for me.  More of a personal challenge. <img src='http://www.jasonsamuel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.jasonsamuel.com/2010/04/08/how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox/">How to edit Word and Excel documents in Sharepoint 2007 using Firefox</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>
<p>More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/' rel='bookmark' title='Getting Firefox to pass Active Directory credentials to Sharepoint 2007'>Getting Firefox to pass Active Directory credentials to Sharepoint 2007</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/05/my-favorite-3rd-party-sharepoint-2007-add-ons/' rel='bookmark' title='My favorite 3rd party Sharepoint 2007 add-ons'>My favorite 3rd party Sharepoint 2007 add-ons</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/15/how-do-you-get-sharepoint-2007-to-read-and-index-content-inside-a-pdf-file/' rel='bookmark' title='How do you get SharePoint 2007 to read and index content inside a PDF file?'>How do you get SharePoint 2007 to read and index content inside a PDF file?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2010/04/08/how-to-edit-word-and-excel-documents-in-sharepoint-2007-using-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Firefox to pass Active Directory credentials to Sharepoint 2007</title>
		<link>http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007</link>
		<comments>http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 16:09:46 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=343</guid>
		<description><![CDATA[Here&#8217;s a simple pointer you can use when using Firefox with Sharepoint 2007 that makes life much easier.  The first thing you will notice when visting your Sharepoint site will be a pop-up box asking you to login.  This is because by default Firefox won&#8217;t pass NTLM credentials like Internet Explorer does. You have to [...]<p><a href="http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/">Getting Firefox to pass Active Directory credentials to Sharepoint 2007</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>

More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2009/09/05/my-favorite-3rd-party-sharepoint-2007-add-ons/' rel='bookmark' title='My favorite 3rd party Sharepoint 2007 add-ons'>My favorite 3rd party Sharepoint 2007 add-ons</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/15/how-do-you-get-sharepoint-2007-to-read-and-index-content-inside-a-pdf-file/' rel='bookmark' title='How do you get SharePoint 2007 to read and index content inside a PDF file?'>How do you get SharePoint 2007 to read and index content inside a PDF file?</a></li>
<li><a href='http://www.jasonsamuel.com/2009/08/11/changing-the-host-header-for-an-already-existing-sharepoint-site-application/' rel='bookmark' title='Changing the host header for an already existing Sharepoint site/application'>Changing the host header for an already existing Sharepoint site/application</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple pointer you can use when using Firefox with Sharepoint 2007 that makes life much easier.  The first thing you will notice when visting your Sharepoint site will be a pop-up box asking you to login.  This is because by default Firefox won&#8217;t pass NTLM credentials like Internet Explorer does. You have to specify trusted URLs that Firefox will pass credentials to.  In the pop-up box, you will see the site or server name it&#8217;s trying to authenticate against.  Just use your mouse to highlight this and press Ctrl + C to copy.  Cancel the login box and in your address bar, type the following:</p>
<blockquote><p>about:config</p></blockquote>
<p>These are the advanced settings for Firefox where you can customize pretty much anything on the browser.  Click the &#8220;I&#8217;ll be careful, I promise!&#8221; button and scroll down until you find:</p>
<blockquote><p>network.automatic-ntlm-auth.trusted-uris</p></blockquote>
<p>Double click on it and press Ctrl + V to paste your URL.  You can add more URLs by seperating them wite a comma like this:</p>
<blockquote><p>http://sharepointsite1, http://sharepointsite2, http://sharepointsite3</p></blockquote>
<p>Now trying navigating to your Sharepoint site and it will automatically login.</p>
<p><a href="http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/">Getting Firefox to pass Active Directory credentials to Sharepoint 2007</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>
<p>More of my posts you might like:<ol>
<li><a href='http://www.jasonsamuel.com/2009/09/05/my-favorite-3rd-party-sharepoint-2007-add-ons/' rel='bookmark' title='My favorite 3rd party Sharepoint 2007 add-ons'>My favorite 3rd party Sharepoint 2007 add-ons</a></li>
<li><a href='http://www.jasonsamuel.com/2009/09/15/how-do-you-get-sharepoint-2007-to-read-and-index-content-inside-a-pdf-file/' rel='bookmark' title='How do you get SharePoint 2007 to read and index content inside a PDF file?'>How do you get SharePoint 2007 to read and index content inside a PDF file?</a></li>
<li><a href='http://www.jasonsamuel.com/2009/08/11/changing-the-host-header-for-an-already-existing-sharepoint-site-application/' rel='bookmark' title='Changing the host header for an already existing Sharepoint site/application'>Changing the host header for an already existing Sharepoint site/application</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2010/02/08/getting-firefox-to-pass-active-directory-credentials-to-sharepoint-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.jasonsamuel.com @ 2012-02-09 17:55:54 -->
