<?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>Shea Allen &#187; Other</title>
	<atom:link href="http://sheaallen.com/category/design-coding/other/feed/" rel="self" type="application/rss+xml" />
	<link>http://sheaallen.com</link>
	<description>When Life Gives You Lemons, You Paint That Sh-t Gold!</description>
	<lastBuildDate>Mon, 30 May 2011 23:38:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Acrobat 9 or CS4 Products Did Not Install FNP Licensing Service VISTA FIX</title>
		<link>http://sheaallen.com/2009/08/acrobat-9-or-cs4-products-did-not-install-fnp-licensing-service-vista-fix/</link>
		<comments>http://sheaallen.com/2009/08/acrobat-9-or-cs4-products-did-not-install-fnp-licensing-service-vista-fix/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 00:14:55 +0000</pubDate>
		<dc:creator>Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[acrobat]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[flexnet]]></category>
		<category><![CDATA[fnp]]></category>
		<category><![CDATA[licensing service]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://sheaallen.com/?p=335</guid>
		<description><![CDATA[Hours of trial and error gave us this solution.]]></description>
			<content:encoded><![CDATA[<p>I recently ran into an error on Adobe Acrobat 9 which I have not seen before. After some research there seems to be quite a lot of people who have had this same problem, but no good fix yet. However, there have been a few fixes for Acrobat 8.</p>
<p>THE PROBLEM:</p>
<p>Upon installation of Acrobat 9 on a Vista workstation, the licensing service (FLEXnet) never installs.The error we are trying to fix looks similar to “Licensing for this product has stopped working”.</p>
<p>THE SOLUTION:</p>
<p>You&#8217;ll see from the following steps that these tools are actually for Acrobat 8, but they do fix Acrobat 9. First, download the Acrobat 8 Licensing Service Fix: <a title="http://www.adobe.com/support/downloads/detail.jsp?ftpID=3750" href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=3750">CLICK HERE</a></p>
<p>Follow the directions and install. Then restart.</p>
<p>Next, run the Adobe Licensing Repair Tool. <a title="http://www.adobe.com/support/contact/licensing.html" href="http://www.adobe.com/support/contact/licensing.html">CLICK HERE</a></p>
<p>Download and follow directions. A good restart after everything should get the licensing set back up again.</p>
<hr />HOW TO TEST IF EVERYTHING WAS SUCCESSFUL:</p>
<p>Goto start&gt;run and type in <strong>services.msc</strong> &#8211; about half way down you&#8217;ll see a service called FLEXnet Licensing Service and it should be running. If you don&#8217;t see this service, you&#8217;re back to step one. Good luck!</p>
<div class="shr-publisher-335"></div><h3  class="related_post_title">Check Out These Related Posts!</h3><ul class="related_post"><li><a href="http://sheaallen.com/2009/05/xbox-360-pc-not-listed-vista-fix/" title="Xbox 360: PC Not Listed FIX">Xbox 360: PC Not Listed FIX</a></li><li><a href="http://sheaallen.com/2008/11/how-to-make-aim-work-on-windows-vista/" title="How to make AIM work on Windows Vista">How to make AIM work on Windows Vista</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://sheaallen.com/2009/08/acrobat-9-or-cs4-products-did-not-install-fnp-licensing-service-vista-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>.htaccess &#8211; Redirect Everyone But You</title>
		<link>http://sheaallen.com/2009/05/htaccess-redirect-everyone-but-you/</link>
		<comments>http://sheaallen.com/2009/05/htaccess-redirect-everyone-but-you/#comments</comments>
		<pubDate>Thu, 14 May 2009 15:04:12 +0000</pubDate>
		<dc:creator>Shea</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://sheaallen.com/?p=277</guid>
		<description><![CDATA[Do you plan on taking your website down for maintenance? Maybe you're doing a complete overhaul of your site, or even a clients website and you don't want anybody to see the construction except you. Here's how to do it!]]></description>
			<content:encoded><![CDATA[<p>Lets begin with the basics. Create a text file and name it .htaccess . Then, lets add some text:</p>
<blockquote><p>Options +FollowSymlinks<br />
Rewrite Engine on<br />
RewriteCond %{REQUEST_URI] !/maintenance.html$</p>
<p>RewriteRule $ /maintenance.html [R=302,L]</p></blockquote>
<p>Save your file and lets upload it to the root directory. In other words, it should appear here: www.yourwebsite.com/.htaccess</p>
<p>Once its been uploaded whenever you go to the website it should automatically redirect you and everybody else to maintenance.html. If this page doesn&#8217;t exist, you&#8217;ll get an error but this is only the test. Once we know the file is working, lets add this extra line right after the REQUEST_URI line:</p>
<blockquote><p>RewriteCond %[REMOTE_HOST] !^12\.34\.56\.78</p></blockquote>
<p>Of course you would replace the IP with your own (find it at <a href="http://www.ipchicken.com">www.ipchicken.com</a> ). Save the file and reupload it. It should now look like the following:</p>
<blockquote><p>Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
RewriteCond %{REMOTE_HOST} !^12\.34\.56\.78</p>
<p>RewriteRule $ /maintenance.html [R=302,L]</p></blockquote>
<p>It&#8217;s as simple as that. If you want to allow more than one IP, you can just duplicate the REMOTE_HOST line as many times as you want with your new IP addresses. Upload to the root directory and you&#8217;re good to go! Good luck!</p>
<div class="shr-publisher-277"></div><h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://sheaallen.com/2008/09/tropical-update-gustav-hanna-ike-now-josephine/" title="Tropical Update: Gustav, Hanna, Ike &amp; Josephine">Tropical Update: Gustav, Hanna, Ike &amp; Josephine</a></li><li><a href="http://sheaallen.com/2008/10/the-triboro/" title="The Triboro">The Triboro</a></li><li><a href="http://sheaallen.com/2008/08/5/" title="TS Gustav 11:00AM CST">TS Gustav 11:00AM CST</a></li><li><a href="http://sheaallen.com/2008/08/skip-school-fights/" title="Skip School Fights">Skip School Fights</a></li><li><a href="http://sheaallen.com/2009/08/acrobat-9-or-cs4-products-did-not-install-fnp-licensing-service-vista-fix/" title="Acrobat 9 or CS4 Products Did Not Install FNP Licensing Service VISTA FIX">Acrobat 9 or CS4 Products Did Not Install FNP Licensing Service VISTA FIX</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://sheaallen.com/2009/05/htaccess-redirect-everyone-but-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

