<?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>logon2 Blog &#187; Troubleshooting</title>
	<atom:link href="http://www.logon2.com.au/blog/archive/category/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.logon2.com.au/blog</link>
	<description>Better use of the web for everybody</description>
	<lastBuildDate>Tue, 13 Jul 2010 12:44:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>PHP &#8211; No such file or directory in Unknown on line 0 Error</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/php-no-such-file-or-directory-in-unknown-on-line-0-error/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/php-no-such-file-or-directory-in-unknown-on-line-0-error/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 02:31:02 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fatal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[unknown]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/?p=138</guid>
		<description><![CDATA[Ran XAMPP, tried to access the development virtual host for Kids On The Rise ( http://localhost:99 ) and got this: Warning: Unknown([PATH HERE]): failed to open stream: No such file or directory in Unknown on line 0 Some other Fatal error came up but I forgot to copy it, sorry. The error message is unhelpful [...]]]></description>
			<content:encoded><![CDATA[<p>Ran XAMPP, tried to access the development virtual host for Kids On The Rise ( http://localhost:99 ) and got this:</p>
<pre>Warning: Unknown([PATH HERE]): failed to open stream: No such file or directory in Unknown on line 0</pre>
<p>Some other <b>Fatal</b> error came up but I forgot to copy it, sorry.</p>
<p>The error message is unhelpful but it was pretty easy to fix. I just deleted the .htaccess file from the root and tested. It worked! After restoring a backup of the .htaccess file everything worked. Hooray!</p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/processing-php-code-in-css-files-to-improve-productivity-and-browser-cross-compatibility-using-apache/" title="Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)">Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/check-if-headers-have-already-been-sent-in-php/" title="Check if Headers Have Already Been Sent in PHP">Check if Headers Have Already Been Sent in PHP</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/php-apache-mod-rewrite-tutorial/" title="Clean URLs Using Apache&#8217;s mod_rewrite and PHP &#8211; Beginner&#8217;s Tutorial">Clean URLs Using Apache&#8217;s mod_rewrite and PHP &#8211; Beginner&#8217;s Tutorial</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/extract-get-variables-from-url-string-to-array-php-function/" title="Extract GET Variables from URL String to Array &#8211; PHP Function">Extract GET Variables from URL String to Array &#8211; PHP Function</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/php-no-such-file-or-directory-in-unknown-on-line-0-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check if Headers Have Already Been Sent in PHP</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/check-if-headers-have-already-been-sent-in-php/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/check-if-headers-have-already-been-sent-in-php/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 05:39:51 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/?p=119</guid>
		<description><![CDATA[Most PHP programmers would have come across this old chestnut before: Cannot modify header information – headers already sent by page.php line 42 This can happen when you try doing a HTTP redirect or send HTTP 404, as it can happen whenever you try to send headers once they&#8217;ve already been sent. When a user [...]]]></description>
			<content:encoded><![CDATA[<p>Most PHP programmers would have come across this old chestnut before:<br />
<code>Cannot modify header information – headers already sent by page.php line 42</code></p>
<p>This can happen when you try doing a HTTP redirect or send HTTP 404, as it can happen whenever you try to send headers once they&#8217;ve already been sent. When a user sees this, they are basically left high and dry, often on a blank page. The solution is simple:</p>
<h3>Detect if Headers Have Already Been Sent</h3>
<p>Whenever you call <strong>header();</strong> , call <strong>headers_sent();</strong> first!</p>
<p>Example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">headers_sent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Location: '</span> <span style="color: #339933;">.</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$absolute</span> ? HOME_URL <span style="color: #339933;">:</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$page</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&lt;p&gt;Couldn't redirect to &quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">htmlentities</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$absolute</span> ? HOME_URL <span style="color: #339933;">:</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$page</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;, headers already sent.&lt;/p&gt;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//do something here...</span>
    <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Of course you should probably do thing useful </p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/coding/mysql-coding/groupwise-maximum-mysql/" title="Returning the entire row of maximum value for each group (Group-wise Maximum in SQL / MySQL )">Returning the entire row of maximum value for each group (Group-wise Maximum in SQL / MySQL )</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/processing-php-code-in-css-files-to-improve-productivity-and-browser-cross-compatibility-using-apache/" title="Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)">Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/php-no-such-file-or-directory-in-unknown-on-line-0-error/" title="PHP &#8211; No such file or directory in Unknown on line 0 Error">PHP &#8211; No such file or directory in Unknown on line 0 Error</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/php-apache-mod-rewrite-tutorial/" title="Clean URLs Using Apache&#8217;s mod_rewrite and PHP &#8211; Beginner&#8217;s Tutorial">Clean URLs Using Apache&#8217;s mod_rewrite and PHP &#8211; Beginner&#8217;s Tutorial</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/extract-get-variables-from-url-string-to-array-php-function/" title="Extract GET Variables from URL String to Array &#8211; PHP Function">Extract GET Variables from URL String to Array &#8211; PHP Function</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/check-if-headers-have-already-been-sent-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 12:20:32 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet-explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[semantic]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/</guid>
		<description><![CDATA[We&#8217;ve all seen dropdown / popup menu lists on websites before, and generally they&#8217;re extremely useful because they save space, but offer extra functionality. Sometimes, though they&#8217;re tricky to implement. I remember doing a image-only popout menu for the Lonsdale Views, who offer accommodation in Point Lonsdale and it was more difficult than expected &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.logon2.com.au/blog/wp-content/css-html-menu-suckerfish.JPG" alt="CSS and HTML Only Menu - Using Suckerfish Solution" align="right" hspace="5" vspace="5" />We&#8217;ve all seen dropdown / popup menu lists on websites before, and generally they&#8217;re extremely useful because they save space, but offer extra functionality. Sometimes, though they&#8217;re tricky to implement. I remember doing a image-only popout menu for the <a href="http://www.lonsdaleviews.com.au/" title="Lonsdale Views">Lonsdale Views</a>, who offer <a href="http://www.lonsdaleviews.com.au/" title="Accommodation in Point Lonsdale">accommodation in Point Lonsdale</a> and it was more difficult than expected &#8211; First, there was Internet Explorer&#8217;s lack of support for &#8220;:hover&#8221; and then there was Internet Explorer&#8217;s z-index issue. Now that I&#8217;ve got a blog, I thought I&#8217;d publish a how-to guide for valid, accessible semantic HTML and CSS dropdown menus&#8230; But before we get started, here&#8217;s <a href="http://www.logon2.com.au/examples/dropdown-menu/">a basic demo of the HTML and CSS dropdown list</a>.</p>
<h3> The HTML</h3>
<p>After some searching around, the most appealing solution I found was the <a href="http://www.htmldog.com/articles/suckerfish/dropdowns/example/" target="_blank">Suckerfish solution</a>. Using the Suckerfish solution, a dropdown menu can be marked up using semantic HTML &#8211; more specifically &#8211; lists. Here&#8217;s an example:</p>
<pre>
&lt;ul id="nav"&gt;
	&lt;li&gt;&lt;a href="#"&gt;Menu 1&lt;/a&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;

	&lt;li&gt;&lt;a href="#"&gt;Menu 2&lt;/a&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="#"&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Menu 3&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;</pre>
<h3> CSS Part 1</h3>
<p>As you can see, this is some <em>very </em>clean HTML or XHTML code which is great for search engines, accessibility and validation &#8211; not to mention code maintenance.  Now, we just need to apply some CSS styles to the elements to turn this list into a dropdown menu or popup menu.</p>
<p>Using the <a href="http://www.htmldog.com/articles/suckerfish/dropdowns/" target="_blank">Suckerfish solution</a>, these are the styles to add:</p>
<pre>
#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 10em;
}

#nav li {
	float: left;
	width: 10em;
}</pre>
<h3>CSS Part 2</h3>
<p>That CSS gets the root menu&#8217;s visual structure up, now we need to organise the actual dropdown menus. We need to hide the drop down lists until the user hovers over the root of that particular drop down list. To do this, it seems the most accessible <em>multi-platform </em>solution is to move it out of sight using &#8220;left:-999em&#8221; rather than &#8220;display:none&#8221; which is known to be inaccessible. On the<em> hover </em>event, we move it back beneath the root using &#8220;left:auto&#8221; because &#8220;left:0&#8243; causes a problem in Opera.</p>
<p>Here&#8217;s the CSS for showing and hiding the dropdown lists:</p>
<pre>
#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
}</pre>
<h3> The Special :hover Case of Internet Explorer</h3>
<p>Done, you now have a perfectly functioning, semantic, valid, accessible menu &#8211; right? Not quite &#8211; this still doesn&#8217;t work in Internet Explorer because it doesn&#8217;t happen to have full support for the &#8220;:hover&#8221; pseudo class but that&#8217;s Ok. Because those geniuses at HTMLDog created <a href="http://www.htmldog.com/articles/suckerfish/" target="_blank">Suckerfish </a>- a very small Javascript script that will solve this problem in no time, add this to your head section:</p>
<pre>
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");

	for (var i=0; i&lt;sfEls.length; i++) {

		sfEls[i].onmouseover=function() {

			this.className+=" sfhover";
		}

		sfEls[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", sfHover);</pre>
<p>What Suckerfish does is goes through all LI elements in #nav and adds the class &#8220;sfHover&#8221; onMouseOver (when the user hovers over the list item) and removes the class onMouseOut. Or in other words, it solves our problem.</p>
<p>There&#8217;s only one thing left to do, and that&#8217;s change a bit of the CSS that shows the dropdown menus to include the new  &#8220;sfHover&#8221;:</p>
<p>Change:</p>
<pre>
#nav li:hover ul {
	left: auto;
}</pre>
<p>To:</p>
<pre>
#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}</pre>
<p>And that&#8217;s it! Here&#8217;s a working demo of the <a href="http://www.logon2.com.au/examples/dropdown-menu/">valid, accessible HTML and CSS drop down menu</a>.</p>
<h3>Solution for Overlapping Elements or Hidden Menu</h3>
<p>Sometimes, there&#8217;s STILL more trouble. When implementing this menu for Lonsdale Views, I came across a problem &#8211; the menus were being obstructed or hidden behind other elements! So I went ahead and used z-index to let the browser know that the menu needed to be on top. Huzzah, it works! Oh, not in Internet Explorer &#8211; what a surprise.  I spent quite some time searching the internet for a solution&#8230;</p>
<p>Eventually I read that Internet Explorer passes z-index from parent to child, so even if you give a &#8220;4th generation&#8221; element a z-index of 1000, the z-index can&#8217;t be greater than the lowest z-order of any parent elements!</p>
<p>The solution to your menus being obstructed or hidden behind images, hidden behind pictures, hidden behind text, hidden behind flash, hidden behind everything:</p>
<p>Give each parent element of the #nav element isn&#8217;t common with the obstructing element a HIGH z-index (let&#8217;s say, 100) and give the element containing the elements obstructing your menu a LOWER z-index (let&#8217;s say 0)</p>
<p>For example, if this was part of your page:</p>
<pre>
&lt;div id="container"&gt;
	&lt;div id="topbar"&gt;
		&lt;ul id="nav"&gt;
			... the menu code is here ...
		&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="content"&gt;
		... the element(s) that obstruct or are hiding your menu ...
	&lt;/div&gt;
&lt;/div&gt;</pre>
<p>You could use this CSS to remedy your problems:</p>
<pre>
 #topbar, #nav {
	z-index:100;
}

#content {
	z-index:0;
}</pre>
<p>Hope this has saved you some time and taught you something. If you <em>really</em> appreciate it, leave a comment and even go and say thanks to the crew at <a href="http://www.htmldog.com/articles/suckerfish/" target="_blank">HTMLDog </a>- this is all because of them!</p>
<h3>Flash Objects Obstructing or Overlapping Menu</h3>
<p>Sometimes, even when all of the CSS is correct, your menus might be overlapped by flash objects. For example, when you hover over, your CSS menu is hidden behind a flash object. The solution to this is actually somewhat simple and cross-browser. All that you need to do is add the transparency parameter to your embed / object code, like so:</p>
<pre>
&lt;object type="application/x-shockwave-flash" width="100" height="100"&gt;
	&lt;param name="wmode" value="transparent" /&gt;
	&lt;param name="movie" value="flash.swf" /&gt;
	&lt;embed wmode="transparent" src="flash.swf" width="100" height="100" /&gt;
&lt;/object&gt;</pre>
<p>Notice how &#8220;&lt;param name=&#8221;wmode&#8221; value=&#8221;transparent&#8221; /&gt; has been added? Also, <strong>don&#8217;t forget to add the &#8216;wmode=&#8221;transparent&#8217;&#8221; to the EMBED tag</strong><strong> </strong>- that is imporant for non-Internet Explorer browsers. Now obviously, you need to change the &#8220;src&#8221; attributes and the movie value to whatever the URI of your flash file is.</p>
<p>Happy coding!</p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/web-design/pngs-have-different-colours-in-different-browsers/" title="PNGs Have Different Colours in Different Browsers?">PNGs Have Different Colours in Different Browsers?</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/processing-php-code-in-css-files-to-improve-productivity-and-browser-cross-compatibility-using-apache/" title="Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)">Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/nicer-footer-navigation-with-pseudo-selectors/" title="Nicer Footer Navigation with pseudo-selectors">Nicer Footer Navigation with pseudo-selectors</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/introducing-the-lovely-caption-maker/" title="Introducing the Lovely Caption Maker">Introducing the Lovely Caption Maker</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/actionscript/removing-movieclip-children-from-movieclip-in-flash-using-actionscript/" title="Removing MovieClip Children from MovieClip in Flash Using ActionScript">Removing MovieClip Children from MovieClip in Flash Using ActionScript</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Free Web Proxy List &#8211; Access Blocked Sites From Work or School</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/free-web-proxy-list-access-blocked-sites-from-work-or-school/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/free-web-proxy-list-access-blocked-sites-from-work-or-school/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 13:40:03 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/uncategorized/free-web-proxy-list-access-blocked-sites-from-work-or-school/</guid>
		<description><![CDATA[&#8230;Updated on April&#8217;s Fools&#8230; Sometimes a website that you really need to access is blocked from your workplace or school. When things get desperate, there are ways to get around the IT policies, one way is to use a Web Proxy. Web Proxies are websites that act as a messenger &#8211; you ask for any [...]]]></description>
			<content:encoded><![CDATA[<p><strong><font color="#ff0000">&#8230;Updated on April&#8217;s Fools&#8230;</font><br />
</strong></p>
<p>Sometimes a website that you <em>really </em>need to access is blocked from your workplace or school. When things get desperate, there are ways to get around the IT policies, one way is to use a <strong>Web Proxy</strong>. <strong>Web Proxies</strong> are websites that act as a messenger &#8211; you ask for any website and the <strong>Web Proxy </strong>will fetch it for you.</p>
<p>For your convenience, here is a sizable <strong>list of Web Proxies</strong>. Some of the sites in this <strong>Web Proxy List</strong> might be blocked by an IT Admin, so keep trying until you succeed.</p>
<ul>
<li> <a href="http://www.vtunnel.com/">vTunnel</a></li>
<li><a href="http://www.xanproxy.be/">XanProxy</a></li>
<li><a href="http://ieproxy.com/">ieProxy</a></li>
<li><a href="http://www.techtakeover.com/search/">TechTakeover</a></li>
<li><a href="http://www.spysurfing.com/">SpySurfing</a></li>
<li><a href="http://www.myfreeproxy.be/">MyFreeProxy</a></li>
<li><a href="http://worldwideproxy.com/">WorldWideProxy</a></li>
<li><a href="http://www.proxytastic.com/">Proxytastic</a></li>
<li><a href="http://www.nomorelimits.net/">NoMoreLimits</a></li>
<li><a href="http://www.proxifree.com/">ProxiFree</a></li>
<li><a href="http://browseatwork.com/">BrowseAtWork</a></li>
<li><a href="http://www.netsack.net/">NetSack</a></li>
<li><a href="http://www.afreeproxy.com/">aFreeProxy</a></li>
<li><a href="http://cgi-proxy.net/">CGI-Proxy</a></li>
<li><a href="http://www.easyproxy.org/">CoveredTracks</a></li>
<li><a href="http://www.easyproxy.org/">EasyProxy</a></li>
<li><a href="http://www.privatizer.net/">Privatizer</a></li>
<li><a href="http://www.secure-tunnel.com/">Secure-Tunnel</a></li>
<li><a href="http://www.spiderproxy.com/">SpiderProxy</a></li>
<li><a href="http://www.unipeak.com/">TheStrongestLinks</a></li>
<li><a href="http://www.unipeak.com/">Unipeak</a></li>
<li><a href="http://betaproxy.com/">BetaProxy</a></li>
<li><a href="http://proxy7.com/">Proxy7</a></li>
<li><a href="http://webwarper.net/">WebWarper</a></li>
<li><a href="http://www.chronicpulse.net/">ChronicPulse</a></li>
<li><a href="http://www.proxyking.net/">ProxyKing</a></li>
<li><a href="http://w3privacy.com/">W3Privacy</a></li>
<li><a href="http://freeproxy.us/">FreeProxy</a></li>
<li><a href="http://www.goproxing.com/">GoProxing</a></li>
<li><a href="http://greenrabbit.org/">GreenRabbit</a></li>
<li><a href="http://hujiko.com/">Hujiko</a></li>
<li><a href="http://poxy.us.to/">Poxy</a></li>
<li><a href="http://hidemyass.com/">HideMyAss</a></li>
<li><a href="http://proxify.com/">Proxify</a></li>
<li><a href="http://projectbypass.com/">ProjectBypass</a></li>
<li><a href="http://proxymouse.com/">ProxyMouse</a></li>
<li><a href="http://letsproxy.com/">LetsProxy</a></li>
<li><a href="http://the-cloak.com/login.html">The-Cloak</a></li>
</ul>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/" title="Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML">Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML</a></li><li><a href="http://www.logon2.com.au/blog/archive/tips/get-a-free-website/" title="Get a Free Website">Get a Free Website</a></li><li><a href="http://www.logon2.com.au/blog/archive/myspace/choose-myspace-comment-colors-fonts-and-sizes/" title="Choose MySpace Comment Colors, Fonts and Sizes">Choose MySpace Comment Colors, Fonts and Sizes</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-browsers/firefox-exploit-your-google-account-is-succeptible/" title="Firefox Exploit &#8211; Your Google Account is Succeptible">Firefox Exploit &#8211; Your Google Account is Succeptible</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/" title="Download Music From YouTube Videos &#8211; From YouTube to MP3">Download Music From YouTube Videos &#8211; From YouTube to MP3</a></li><li><a href="http://www.logon2.com.au/blog/archive/networking/explode-your-myspace-network/" title="Explode Your MySpace Network">Explode Your MySpace Network</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/free-web-proxy-list-access-blocked-sites-from-work-or-school/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Download Music From YouTube Videos &#8211; From YouTube to MP3</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 14:12:50 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/</guid>
		<description><![CDATA[I came across a handy website that allows you to download music from YouTube videos as an MP3 file. This is YouTube MP3 tool is  extremely useful because it can allow you to: Download MP3s from YouTube Put YouTube music on your iPod, or put YouTube music on MP3 Players, etc. Burn YouTube Music to [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a handy website that allows you to <strong>download music from YouTube videos</strong> as an MP3 file. This is YouTube MP3 tool is  extremely useful because it can allow you to:</p>
<ul>
<li>Download MP3s from YouTube</li>
<li>Put YouTube music on your iPod, or put YouTube music on MP3 Players, etc.</li>
<li>Burn YouTube Music to a CD</li>
<li>Use YouTube Music as Ringtones</li>
<li>And much more&#8230;</li>
</ul>
<p>To <a href="http://www.haxyo.com/conversion/">Download MP3 from YouTube</a>, just visit their website &#8211; <a href="http://www.haxyo.com/conversion/">Download Video &amp; MP3 from YouTube</a>.</p>
<p><strong>Also, don&#8217;t forget to read our guide on how to <a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/">Download YouTube Videos</a> &#8211; we even teach you <a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/">how to burn YouTube videos to DVD</a>!</strong></p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/" title="Download YouTube Videos &#8211; Also burn them to DVD">Download YouTube Videos &#8211; Also burn them to DVD</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/tools/new-tool-youtube-music-on-myspace/" title="New Tool &#8211; YouTube Music on MySpace ">New Tool &#8211; YouTube Music on MySpace </a></li><li><a href="http://www.logon2.com.au/blog/archive/tips/get-a-free-website/" title="Get a Free Website">Get a Free Website</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/" title="YouTube Videos Choppy or Slow">YouTube Videos Choppy or Slow</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/xhtml-and-html5-compliant-flash-stop-using-embed-and-invalid-xhtmlhtml5/" title="XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5">XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Videos Choppy or Slow</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 13:36:14 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/</guid>
		<description><![CDATA[It&#8217;s extremely annoying when you&#8217;re trying to watch a video on YouTube, MetaCafe, DailyMotion, etc. and it pauses every 10 seconds! What causes this? It could be any of these, listed from most likely to least likely&#8230; Your internet connection isn&#8217;t fast enough. To view video smoothly, you need a connection speed of at least [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s extremely annoying when you&#8217;re trying to watch a video on YouTube, MetaCafe, DailyMotion, etc. and it pauses every 10 seconds! What causes this? It could be any of these, listed from most likely to least likely&#8230;</p>
<ol>
<li>Your internet connection isn&#8217;t fast enough. To view video smoothly, you need a connection speed of at least 512kb/s. If your internet plan has a limit, maybe you&#8217;ve exceeded it. Find out your connection speed at <a href="http://www.speedtest.net/">SpeedTest</a>.</li>
<li>You&#8217;re running too many programs. If you can usually watch videos online smoothly, this is likely. Try closing programs or even restarting.</li>
<li>Your computer isn&#8217;t fast enough to process the video smoothly. If it&#8217;s over 8 years old, this might be the case.</li>
<li>YouTube, MetaCafe, DailyMotion or your ISP might be experiencing high network demand and can&#8217;t stream the video smoothly. This is only likely if you usually can view the  videos smoothly.</li>
</ol>
<p>Happy viewing!</p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/" title="Download Music From YouTube Videos &#8211; From YouTube to MP3">Download Music From YouTube Videos &#8211; From YouTube to MP3</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/" title="Download YouTube Videos &#8211; Also burn them to DVD">Download YouTube Videos &#8211; Also burn them to DVD</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/xhtml-and-html5-compliant-flash-stop-using-embed-and-invalid-xhtmlhtml5/" title="XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5">XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5</a></li><li><a href="http://www.logon2.com.au/blog/archive/tools/new-tool-youtube-music-on-myspace/" title="New Tool &#8211; YouTube Music on MySpace ">New Tool &#8211; YouTube Music on MySpace </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Home Pages in Internet Explorer and Firefox</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/multiple-home-pages-in-internet-explorer-and-firefox/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/multiple-home-pages-in-internet-explorer-and-firefox/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 13:07:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/troubleshooting/multiple-home-pages-in-internet-explorer-and-firefox/</guid>
		<description><![CDATA[Many people, including me, like to visit more than one website each time they get onto the internet. It&#8217;s now very easy to do, whether you use Internet Explorer or Firefox. Here&#8217;s how to do it: Internet Explorer 7: Click Tools &#62; Internet Options In the &#8220;General&#8221; tab inside the &#8220;Home Page&#8221; frame, enter each [...]]]></description>
			<content:encoded><![CDATA[<p>Many people, including me, like to visit more than one website each time they get onto the internet. It&#8217;s now very easy to do, whether you use Internet Explorer or Firefox.</p>
<p>Here&#8217;s how to do it:</p>
<p><strong> Internet Explorer 7:</strong></p>
<ol>
<li> Click Tools &gt; Internet Options</li>
<li>In the &#8220;General&#8221; tab inside the &#8220;Home Page&#8221; frame, enter each of the web site addresses on a separate line, ie:
<p>http://www.logon2.com.au/</p>
<p>http://www.cryptech.com.au/</p>
<p>http://www.mylook.cc/</li>
<li>Press OK.</li>
<li>And you&#8217;re done!</li>
</ol>
<p><strong> Firefox:</strong></p>
<ol>
<li>Visit each of the pages you want to be your home page in separate tabs (Ctrl + T opens a new tab)</li>
<li>Click Tools &gt; Options</li>
<li>Click &#8220;Current Pages&#8221; in the &#8220;Startup&#8221; frame</li>
<li>Click OK and you&#8217;re done!</li>
</ol>
<p>This might save you a minute a day, which is about 6 hours a year!</p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/processing-php-code-in-css-files-to-improve-productivity-and-browser-cross-compatibility-using-apache/" title="Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)">Processing PHP Code in CSS files to Improve Productivity and Browser Cross-Compatibility (using Apache)</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/" title="Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML">Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML</a></li><li><a href="http://www.logon2.com.au/blog/archive/myspace/choose-myspace-comment-colors-fonts-and-sizes/" title="Choose MySpace Comment Colors, Fonts and Sizes">Choose MySpace Comment Colors, Fonts and Sizes</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/free-web-proxy-list-access-blocked-sites-from-work-or-school/" title="Free Web Proxy List &#8211; Access Blocked Sites From Work or School">Free Web Proxy List &#8211; Access Blocked Sites From Work or School</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-browsers/firefox-exploit-your-google-account-is-succeptible/" title="Firefox Exploit &#8211; Your Google Account is Succeptible">Firefox Exploit &#8211; Your Google Account is Succeptible</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/multiple-home-pages-in-internet-explorer-and-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Download YouTube Videos &#8211; Also burn them to DVD</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 12:51:08 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/uncategorized/download-youtube-videos/</guid>
		<description><![CDATA[Have you ever seen a great video on YouTube, Google Video, MetaCafe or DailyMotion and wanted to download the YouTube video, maybe even burn the YouTube video to DVD? Well, you can, and it&#8217;s quite a simple process. Just follow these steps: Download VLC Media Player from the VLC Website. You need this to watch [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever seen a great video on YouTube, Google Video, MetaCafe or DailyMotion and wanted to <strong>download the YouTube video</strong>, maybe even <strong>burn the YouTube video to DVD</strong>? Well, you can, and it&#8217;s quite a simple process. </p>
<p>Just follow these steps:</p>
<ol>
<li>Download VLC Media Player from the <a href="http://www.videolan.org/vlc/" target="_blank">VLC Website</a>. You need this to watch the downloaded videos.</li>
<li>Go to the video website (ie. YouTube, DailyMotion, etc.) go to the video, and copy the URL (ie. http://www.youtube.com/v/asdfagh0h)</li>
<li>Go to the<a href="http://keepvid.com/" target="_blank"> KeepVid website </a>and paste the URL in the textbox. It will download shortly.</li>
<li>Enjoy!</li>
</ol>
<p>It&#8217;s a good idea to bookmark the <a href="http://keepvid.com/">KeepVid website.</a></p>
<p>Now you can save them for later or take them with you on the road!</p>
<p><strong>Burning YouTube Videos to DVD</strong>Download <a href="http://www.dvdflick.net/" target="_blank">DVDFlick</a> and run it. You can now add the downloaded YouTube videos to a DVD and watch them anywhere.</p>
<p>Don&#8217;t forget to check out our guide on how to <a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/">Download YouTube Music</a> &#8211; learn how to get the <a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/">music from YouTube Videos Downloaded in MP3</a> format!</p>
<h3>Related Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/download-soundtrack-from-youtube-videos/" title="Download Music From YouTube Videos &#8211; From YouTube to MP3">Download Music From YouTube Videos &#8211; From YouTube to MP3</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/youtube-videos-choppy-or-slow/" title="YouTube Videos Choppy or Slow">YouTube Videos Choppy or Slow</a></li><li><a href="http://www.logon2.com.au/blog/archive/web-design/xhtml-and-html5-compliant-flash-stop-using-embed-and-invalid-xhtmlhtml5/" title="XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5">XHTML and HTML5 Compliant Flash &#8211; Stop Using Embed and Invalid XHTML/HTML5</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/pretty-smarties/pretty-smarties-05-pretty-urls-smarty-templates-and-faster-web-design/" title="Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design">Pretty Smarties 0.5 &#8211; Pretty URLs, Smarty Templates and Faster Web Design</a></li><li><a href="http://www.logon2.com.au/blog/archive/tools/new-tool-youtube-music-on-myspace/" title="New Tool &#8211; YouTube Music on MySpace ">New Tool &#8211; YouTube Music on MySpace </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/download-youtube-videos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash Runs Slow in Vista</title>
		<link>http://www.logon2.com.au/blog/archive/troubleshooting/flash-runs-slow-in-vista/</link>
		<comments>http://www.logon2.com.au/blog/archive/troubleshooting/flash-runs-slow-in-vista/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 23:03:59 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[design vista flash slow problem solution]]></category>

		<guid isPermaLink="false">http://www.logon2.com.au/blog/archive/uncategorized/flash-runs-slow-in-vista/</guid>
		<description><![CDATA[Anybody who&#8217;s used Macromedia Flash 8 on a Windows Vista computer would have noticed how LONG it takes to edit a symbol by double-clicking it on stage. The surrounding marquee takes about 10-15 seconds to expand. Anyway, the solution is simple and doesn&#8217;t require downloading updates or patches. Here are the steps to take: Right-click [...]]]></description>
			<content:encoded><![CDATA[<p>Anybody who&#8217;s used Macromedia Flash 8 on a Windows Vista computer would have noticed how LONG it takes to edit a symbol by double-clicking it on stage. The surrounding marquee takes about 10-15 seconds to expand. Anyway, the solution is simple and doesn&#8217;t require downloading updates or patches.  Here are the steps to take:</p>
<ol>
<li>Right-click on a shortcut to Flash</li>
<li>Click Properties</li>
<li>Go to the &#8216;Compatibility&#8217; tab</li>
<li>Check &#8220;Run this program in compatability mode for:&#8221;</li>
<li>Select &#8220;Windows XP (Service Pack 2)&#8221; from the list.</li>
<li>Click &#8220;Ok&#8221;</li>
</ol>
<p>That&#8217;s it. Now when you run Flash, you won&#8217;t be wasting one minute every five minutes you work. There is one drawback, though. While Flash is running, the Vista theme is switched to &#8220;Basic&#8221;, but returned as soon as you close it.</p>
<h3>Popular Posts:</h3><ul class="related_post"><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/accessible-valid-dropdown-menu-or-popup-menu-using-css-and-semantic-html/" title="Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML">Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML</a></li><li><a href="http://www.logon2.com.au/blog/archive/troubleshooting/free-web-proxy-list-access-blocked-sites-from-work-or-school/" title="Free Web Proxy List &#8211; Access Blocked Sites From Work or School">Free Web Proxy List &#8211; Access Blocked Sites From Work or School</a></li><li><a href="http://www.logon2.com.au/blog/archive/myspace/choose-myspace-comment-colors-fonts-and-sizes/" title="Choose MySpace Comment Colors, Fonts and Sizes">Choose MySpace Comment Colors, Fonts and Sizes</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/mysql-coding/groupwise-maximum-mysql/" title="Returning the entire row of maximum value for each group (Group-wise Maximum in SQL / MySQL )">Returning the entire row of maximum value for each group (Group-wise Maximum in SQL / MySQL )</a></li><li><a href="http://www.logon2.com.au/blog/archive/tools/myspace-convert-text-to-html/" title="MySpace &#8211; Convert Text to HTML">MySpace &#8211; Convert Text to HTML</a></li><li><a href="http://www.logon2.com.au/blog/archive/coding/coding-php/extract-get-variables-from-url-string-to-array-php-function/" title="Extract GET Variables from URL String to Array &#8211; PHP Function">Extract GET Variables from URL String to Array &#8211; PHP Function</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.logon2.com.au/blog/archive/troubleshooting/flash-runs-slow-in-vista/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

