<?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>Tiago Moreira</title>
	<atom:link href="http://tiago.kamots.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiago.kamots.net</link>
	<description></description>
	<lastBuildDate>Mon, 08 Feb 2010 09:21:52 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Authentication Loop with .htaccess Protected Pages</title>
		<link>http://tiago.kamots.net/2010/01/28/htaccess-authentication-loop/</link>
		<comments>http://tiago.kamots.net/2010/01/28/htaccess-authentication-loop/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 04:18:20 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=109</guid>
		<description><![CDATA[DRAFT
After trying out my .htaccess scheme to protect my WordPress installation I was running into an endless pop-up of authentication pop-ups.
I searched around and found a post by DianeV on the WP forums: http://wordpress.org/support/topic/113881#post-546028
She links to a post she made back in 2007 (yikes) entitled:
WordPress admin password protection 404 http://developedtraffic.com/2007/05/27/wordpress-admin-password-protection-404/
She points to a support issue [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong><span style="color: #c0c0c0;">DRAFT</span></strong></p>
<p>After trying out my .htaccess scheme to protect my WordPress installation I was running into an endless pop-up of authentication pop-ups.</p>
<p>I searched around and found a post by DianeV on the WP forums: <a href="http://wordpress.org/support/topic/113881#post-546028">http://wordpress.org/support/topic/113881#post-546028</a></p>
<p>She links to a post she made back in 2007 (yikes) entitled:<br />
WordPress admin password protection 404 <a href="http://developedtraffic.com/2007/05/27/wordpress-admin-password-protection-404/">http://developedtraffic.com/2007/05/27/wordpress-admin-password-protection-404/</a></p>
<p>She points to a support issue with the TextPattern CMS <a href="http://textpattern.com/faq/173/password-protected-directories-with-htaccess">http://textpattern.com/faq/173/password-protected-directories-with-htaccess</a> which happens to give a solution.</p>
<p>It turns out that some servers need to be told explicitly where the error pages are, especially those for 401 and 403 errors, in order for .htaccess authentication to work properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2010/01/28/htaccess-authentication-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing WordPress Securely on DreamHost</title>
		<link>http://tiago.kamots.net/2010/01/26/secure-wp-on-dreamhost/</link>
		<comments>http://tiago.kamots.net/2010/01/26/secure-wp-on-dreamhost/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 04:12:21 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=104</guid>
		<description><![CDATA[DRAFT
After my WordPress website was hacked into, I began to look into all the options and advice for setting it up securely.
http://codex.wordpress.org/Installing_WordPress
Step 1: Getting the Latest WordPress Version
I like to use the shell for this since it saves on downloading it on one of my computers and then transferring it onto a remote server. Login [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong><span style="color: #c0c0c0;">DRAFT</span></strong></p>
<p>After my WordPress website was hacked into, I began to look into all the options and advice for setting it up securely.<br />
<a href="http://codex.wordpress.org/Installing_WordPress">http://codex.wordpress.org/Installing_WordPress</a></p>
<h2>Step 1: Getting the Latest WordPress Version</h2>
<p>I like to use the shell for this since it saves on downloading it on one of my computers and then transferring it onto a remote server. Login to your file hosting server with the shell account you assigned to your domain. Navigate to a directory where you want to work from, keeping in mind that it doesn’t have to be the directory that is set to be public on the Internet (i.e. where the files placed here can be reached via a browser). At the prompt, run: wget <a href="http://wordpress.org/latest.tar.gz">http://wordpress.org/latest.tar.gz</a></p>
<p>The above link will always download the latest release. Now you need to decompress this archive, run: tar -xzvf latest.tar.gz</p>
<p>In your current directory, you should now have a directory called wordpress that you can rename to anything. You will be pointing your URL address to this folder as your root.</p>
<p>Delete readme.html from the wordpress root directory as this will tip off the exact version you have installed to possible attackers.</p>
<h2>Step 2: Changing the wp-config.php File</h2>
<p>Fill in the information related to the database you’ll be using in the following defines: DB_NAME, DB_USER, DB_PASSWORD, DB_HOST</p>
<p>You should always change the default database table prefix from wp_ to something a bit harder to guess. In most installations, people will have one database devoted strictly to WordPress, so you don’t even have to prefix the tables with wp_; just create a random alphanumeric string (about 4-6 characters long) and use that as your prefix.</p>
<pre>$table_prefix  = 'wp_';
$table_prefix  = 'rRe342_';</pre>
<p>Pay attention to the Authentication Unique Keys section and be sure to get a new generated set from the WP secret-key service <a href="https://api.wordpress.org/secret-key/1.1/">https://api.wordpress.org/secret-key/1.1/</a> as it says in the comments area.</p>
<p>A good discussion of other wp-config.php options is found here: <a href="http://codex.wordpress.org/Editing_wp-config.php">http://codex.wordpress.org/Editing_wp-config.php</a></p>
<h2>Step 3: Creating Directory-Level Password Checks</h2>
<p>htpasswd -cm /home/&lt;username&gt;/&lt;website&gt;/.htpasswd &lt;new username you want to create a password for&gt;</p>
<p>use the -m for MD5</p>
<h2>Step 4: Changing the DreamHost Server Settings to Point to Your New WordPress Installation</h2>
<p>To run the WordPress install script, you will need to change the settings of the server to point to your WP root directory (the one created during the decompressing of the archive in Step 1). For DreamHost Web Panel users, head to Manage Domains found either through the Toolbox shortcut or under the Main Menu Domains heading. Find the domain (or sub-domain) name you want WordPress to be shown from and click on its Edit button. Now fill out the Web Directory textbox to map onto the WP root directory.</p>
<p>It may be handy to have phpMyAdmin open and ready for the database you’ll be using as you’re going to want to modify a few things.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2010/01/26/secure-wp-on-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My WordPress Installation Hacked on Netfirms</title>
		<link>http://tiago.kamots.net/2010/01/24/my-netfirms-wp-hacked/</link>
		<comments>http://tiago.kamots.net/2010/01/24/my-netfirms-wp-hacked/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 03:06:17 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=102</guid>
		<description><![CDATA[DRAFT
I was looking over some settings on my website earlier and I just happened to check on my Google Webmaster Tools account where I discovered that something was not quite right. Google’s site crawler was reporting that there were 24(?) unlinked pages on one of my WordPress pages. I clicked through to find that there [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong><span style="color: #c0c0c0;">DRAFT</span></strong></p>
<p>I was looking over some settings on my website earlier and I just happened to check on my Google Webmaster Tools account where I discovered that something was not quite right. Google’s site crawler was reporting that there were 24(?) unlinked pages on one of my WordPress pages. I clicked through to find that there was an entirely new directory (/pdd) on my website that linked to a radio podcasting site from the Netherlands. But that directory didn’t exist! Here’s the worrisome part: whoever managed to hack into my account was able to change my root .htaccess file. So they created a new rewrite rule to route the tiago.kamots.net/pdd requests through another vector.</p>
<pre>The Altered .htaccess File:
RewriteEngine On
RewriteRule pdd/(.*)/(.*)/(.*)/$ /wp-admin/includes/?post=$3|$1|$2 [L]
RewriteRule pdd/$ /wp-admin/includes/ [L]
RewriteBase /</pre>
<p>Whatever changed the .htaccess file was smart enough to create the new rewrite rules near the top of the file for full effect. Had it simply been appended, it would not have worked.</p>
<p>I transferred a part of the Kamots Network from Netfirms to DreamHost on January 15, 2010, and I originally thought that it was during this small window that the attack was made. But I was wrong. I checked back on the Netfirms servers and there were several files with a last modified timestamp of interest (November 15, 2009). They are (using relative pathnames):</p>
<pre>WordPress root directory represented as ~
~/.htaccess [Last Modified: 2009-October-23]
~/wp-includes/class-read.php [8 KB]
~/wp-includes/common.php [0 bytes]
~/wp-includes/wp-common.php [69 KB]
~/wp-includes/wp-vars.php [0 bytes]
~/wp-includes/wp-version.php [105 bytes]</pre>
<p>When transferring these files to my desktop computer, my Norton Antivirus detected a High severity PHP.Backdoor.Trojan in wp-common.php. It turns out that this file was written by a “security group” in China, which is also where 90% of my spam messages on WordPress originate from. You can download this toolkit off of this group’s website so there is a strong chance it was used as part of an automated/scripted attack by another entity entirely.</p>
<p>Running a Hidden Website Within a WordPress Installation</p>
<p>What interests me is how this attack was able to implant 46 hidden pages within my WordPress installation. For example, this URL:</p>
<p>http://tiago.kamots.net/pdd/41/hoor/hoorspelcast-raquo-gezocht/</p>
<p>actually gets redirected through the .htaccess rule into:<br />
tiago.kamots.net/wp-admin/includes/?post= hoorspelcast-raquo-gezocht |41|hoor</p>
<p>But none of those 46 pages are anywhere in my database or file structure! What an ingenious exploit, and it’s been known since at least 2008 which is the date that this wp-common.php Trojan file was written.</p>
<p>This was quite a learning experience.</p>
<p>Netfirms<br />
You may need to look into your file system security. And shouldn’t you have an antivirus scan of some sort running on your servers? Also, your FTP users are limited with passwords of only 6 characters. That’s way too small! Since you randomly generate them for your customers, you may as well go all the way and have longer (and more complicated) passwords created.<br />
Good References<br />
<a href="http://ocaoimh.ie/did-your-wordpress-site-get-hacked/">http://ocaoimh.ie/did-your-wordpress-site-get-hacked/</a><br />
<a href="http://enthusiasm.cozy.org/archives/2010/01/argh-blog-hacked">http://enthusiasm.cozy.org/archives/2010/01/argh-blog-hacked</a><br />
<a href="http://www.askapache.com/htaccess/htaccess.html">http://www.askapache.com/htaccess/htaccess.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2010/01/24/my-netfirms-wp-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discounted Windows 7 Professional Upgrade for Canadian Students Now Available</title>
		<link>http://tiago.kamots.net/2009/10/22/win7-pro-upgrade-cdn-students/</link>
		<comments>http://tiago.kamots.net/2009/10/22/win7-pro-upgrade-cdn-students/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 22:34:42 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=95</guid>
		<description><![CDATA[Microsoft has really opened up to students in recent years, offering their flagship products at a dramatic price reduction. Most MSDN software is even free, including their Visual Studio line of products. Anyways, I’m here to say that Microsoft has already added Windows 7 Professional Upgrade (Wikipedia comparison of editions) to their student discount program.

At TheUltimateSteal.ca, [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Microsoft</strong></em> has really <a title="information about DreamSpark [Wikipedia]" href="http://en.wikipedia.org/wiki/DreamSpark" target="_blank">opened up to students</a> in recent years, offering their flagship products at a dramatic price reduction. Most <acronym title="Microsoft Developer Network">MSDN</acronym> <a title="information about the MSDN Academic Alliance [Wikipedia]" href="http://en.wikipedia.org/wiki/MSDN_Academic_Alliance" target="_blank">software is even free</a>, including their <a title="Microsoft Visual Studio [Wikipedia]" href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio" target="_blank">Visual Studio</a> line of products. Anyways, I’m here to say that Microsoft has already added <strong><a title="Windows 7 [Wikipedia]" href="http://en.wikipedia.org/wiki/Windows_7" target="_blank">Windows 7</a> <a title="Windows 7 Professional Edition [Microsoft]" href="http://www.microsoft.com/windows/windows-7/compare/professional.aspx">Professional</a> Upgrade</strong> (<a title="Windows 7 Editions [Wikipedia]" href="http://en.wikipedia.org/wiki/Windows_7_editions" target="_blank">Wikipedia comparison of editions</a>) to their student discount program.</p>
<p><a title="Windows 7 Professional Upgrade Canadian Student Pricing by Tiago Moreira, on Flickr" href="http://www.flickr.com/photos/kamots/4036784628/"><img src="http://farm4.static.flickr.com/3551/4036784628_bb2323199a_o.png" alt="Windows 7 Professional Upgrade Canadian Student Pricing" width="171" height="134" /></a></p>
<p>At <em>TheUltimateSteal.ca</em>, the Windows 7 Professional Upgrade is listed at $39.99 (in Canadian dollars)! Granted, that’s only for the digital download but you can have them ship you the official DVD for $13 (includes shipping and you don’t even pay tax).</p>
<p>To order your copy, visit <strong><a title="The Ultimate Steal for Canadian Students" href="http://www.theultimatesteal.ca" target="_blank">TheUltimateSteal.ca</a></strong> or through Microsoft’s longer URL: <a title="Microsoft's Student Discount Program" href="http://www.microsoft.com/student/discounts/theultimatesteal-ca/" target="_blank"><strong></strong></a><a href="http://www.microsoft.com/student/discounts/theultimatesteal-ca/">www.microsoft.com/student/discounts/theultimatesteal-ca/</a></p>
<p>Since this is an Upgrade, you will most likely have to have an existing genuine license for another Windows product (Windows XP and Vista only). There was a loophole with Windows Vista Upgrades where you would not need to enter in your existing key, but that they may be fixed in this new version. If in doubt, do a search for more information.</p>
<p>Enjoy the next step of PC evolution; thumbs up and thanks Microsoft.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/10/22/win7-pro-upgrade-cdn-students/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2007 Service Pack 2 &#8211; Now with more goodness!</title>
		<link>http://tiago.kamots.net/2009/04/29/office-2007-sp2-more-goodness/</link>
		<comments>http://tiago.kamots.net/2009/04/29/office-2007-sp2-more-goodness/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 00:33:31 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=80</guid>
		<description><![CDATA[That&#8217;s a tasty service pack! Microsoft Office 2007 is now at Service Pack 2 and this one&#8217;s big.
From an updated version of Office 2007 SP1, it was 350.3 MB on my Windows Vista PC. That&#8217;s a lot of ones and zeros.
What&#8217;s great about this Service Pack is that it adds full support for OpenDocument Format [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s a tasty <a title="Service Pack - Wikipedia" href="http://en.wikipedia.org/wiki/Service_pack" target="_blank">service pack</a>! <a title="Microsoft article on Wikipedia" href="http://en.wikipedia.org/wiki/Microsoft" target="_blank">Microsoft</a> <strong><a title="Microsoft Office 2007 (Wikipedia)" href="http://en.wikipedia.org/wiki/Microsoft_Office_2007" target="_blank">Office 2007</a></strong> is now at Service Pack 2 and this one&#8217;s big.</p>
<p>From an updated version of Office 2007 SP1, it was 350.3 MB on my Windows Vista PC. That&#8217;s a lot of ones and zeros.</p>
<p>What&#8217;s great about this Service Pack is that it adds full support for <a title="OpenDocument Format (Wikipedia)" href="http://en.wikipedia.org/wiki/OpenDocument" target="_blank">OpenDocument Format (<strong>ODF</strong>)</a> and saving as <a title="Portable Document Format (Wikipedia)" href="http://en.wikipedia.org/wiki/Portable_Document_Format" target="_blank">Portable Document Format (<strong>PDF</strong>)</a> and <a title="XML Paper Specification (Wikipedia)" href="http://en.wikipedia.org/wiki/XML_Paper_Specification" target="_blank">XML Paper Specification (<strong>XPS</strong>)</a>. No more having to download external add-ins for this. I&#8217;m noticing more and more that Microsoft is allowing a lot more open source interoperability in their products, but I don&#8217;t think it&#8217;s Big M &#8220;caving in&#8221;; on the contrary, they&#8217;re giving you more reasons to stay with their products.</p>
<p>Oh, and they also added an interface to program against to extend what formats Office 2007 is capable of working with. From their <a title="Description of 2007 Microsoft Office Suite SP2 and of Microsoft Office Language Pack 2007 SP2" href="http://support.microsoft.com/kb/953195" target="_blank">patch notes</a>:</p>
<blockquote><p><strong>Extensible File Formats:</strong> <a title="Microsoft Word (Wikipedia)" href="http://en.wikipedia.org/wiki/Microsoft_Word" target="_blank">Word</a>, <a title="Microsoft Excel (Wikipedia)" href="http://en.wikipedia.org/wiki/Microsoft_Excel" target="_blank">Excel</a>, and <a title="Microsoft PowerPoint (from Wikipedia)" href="http://en.wikipedia.org/wiki/Microsoft_PowerPoint" target="_blank">PowerPoint</a> now include a converter interface that lets you plug third-party custom file formats into these Office programs. A developer can create a converter for files of a particular extension. When this converter is installed on a user&#8217;s computer, the custom file format effectively behaves like a built-in file format. Specifically, users can open files of this format and save them by using the Open or Save <a title="User Interface (Wikipedia)" href="http://en.wikipedia.org/wiki/User_interface" target="_blank">UI</a>. They can even set the custom format as their default file format. For more information, visit the following <a title="the Open XML Format External File Converter for 2007 Microsoft Office System SP2 (from Microsoft)" href="http://msdn.microsoft.com/en-us/library/dd300649.aspx" target="_blank">MSDN Web site</a>.</p></blockquote>
<p>I&#8217;m interested to see where this goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/04/29/office-2007-sp2-more-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CIPS Toronto &#8211; Discussion on Work-Life Balance</title>
		<link>http://tiago.kamots.net/2009/04/28/cips-toronto-discussion-on-work-life-balance/</link>
		<comments>http://tiago.kamots.net/2009/04/28/cips-toronto-discussion-on-work-life-balance/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 03:36:21 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CIPS]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=84</guid>
		<description><![CDATA[I just returned from my first CIPS Toronto event. After being a member for just under a year, I finally found a meeting time that fit in with my schedule. Since I’m back at RBC for another summer term, it also put me much closer to the location: the Groundhog Pub.
Upon arriving at the basement [...]]]></description>
			<content:encoded><![CDATA[<p>I just returned from my first <a title="CIPS Toronto website" href="http://www.cipstoronto.ca/" target="_blank">CIPS Toronto</a> event. After being a member for just under a year, I finally found a meeting time that fit in with my schedule. Since I’m back at <a href="http://www.rbc.com/careers/glo_tech_and_operations.html" target="_blank">RBC</a> for another summer term, it also put me much closer to the location: the <a href="http://www.groundhogpub.com/" target="_blank">Groundhog Pub</a>.</p>
<p>Upon arriving at the basement room, I found only a handful of people sitting around a table chatting. I was greeted by <a title="Cameron McKay's Blog" href="http://www.cameronmckay.com/" target="_blank">Cameron McKay</a> (the president of CIPS Toronto) and Jeff Knetchel. I also remember <a title="Introduction to Adam Cole on a Canadian IT Manager Blog" href="http://blogs.technet.com/cdnitmanagers/pages/Adam-Cole.aspx" target="_blank">Adam Cole</a> being there, but I did not remember everyone else’s name. I was the only student there and, by far, the youngest.</p>
<p>Cameron had brought along a large microphone to record the talk in hopes of turning it into a podcast. It started as a roundtable discussion where Cameron would ask a question and then go around the table asking the other people (around 10 at this point) what their thoughts or experiences were. I tried to contribute a few times, but I think I only really spoke at any length maybe three times. I asked a question of the others since they all seemed fairly successful and it was very enlightening to hear their experiences and advice on how to manage the balance in our lives. Hopefully the podcast is put up on the CIPS Toronto website.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/04/28/cips-toronto-discussion-on-work-life-balance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Possible Firefox Bug: Cannot open downloaded HTML documents</title>
		<link>http://tiago.kamots.net/2009/04/08/ff-cant-open-html-doc/</link>
		<comments>http://tiago.kamots.net/2009/04/08/ff-cant-open-html-doc/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 05:33:40 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=64</guid>
		<description><![CDATA[I&#8217;m busy right now and I didn&#8217;t have time to look up if this is a bug or not. So here&#8217;s a quick record in case I decide to tackle it later on.
Environment

Operating System: Microsoft Vista Ultimate 64-bit
Microsoft Internet Explorer 8 is the default browser
using Mozilla Firefox 3.0.x

Preconditions
While doing research for my white paper, I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m busy right now and I didn&#8217;t have time to look up if this is a bug or not. So here&#8217;s a quick record in case I decide to tackle it later on.</p>
<h2>Environment</h2>
<ul>
<li><strong>Operating System:</strong> Microsoft Vista Ultimate 64-bit</li>
<li>Microsoft Internet Explorer 8 is the default browser</li>
<li>using Mozilla Firefox 3.0.x</li>
</ul>
<h2>Preconditions</h2>
<p>While doing research for my white paper, I was using the <span style="text-decoration: underline;">InfoTrac General Science eCollection</span> database to pull up some articles. One of the options available is to download the articles as an HTML document. Upon clicking the Download link, it tries downloading an HTML document and prompts me if I would like to <em>Open with</em> or <em>Save File</em>. The default program for the <em>Open with</em> dialog is Internet Explorer, but I decided to change it. Firefox, however, was not listed as an alternative; I ended up having to navigate to the Firefox executable (File: <code>firefox.exe</code>). As soon as I pressed <strong>OK</strong>, I got the following error:</p>
<p style="text-align: center;"><code>Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.</code></p>
<h2>Possible Explanations of Error</h2>
<ul>
<li>Firefox cannot handle opening an HTML document as a download within itself
<ul>
<li>tries to execute another instance of Firefox, but that clashes with already-open instance</li>
</ul>
</li>
<li>Since the default browser on the system is Internet Explorer, it originally tried to open the HTML document with that and it worked. When I tried to change it to Firefox I encountered the problem above.
<ul>
<li>How would this be handled if Firefox were the default HTML document viewer?</li>
<li>Does this behaviour exist when opening an HTML document from a local filesystem (via double-clicking and letting Windows run with the associated program)?</li>
</ul>
</li>
<li><strong>Desired Functionality</strong>
<ul>
<li>To open a New Window in the currently running instance of Firefox with the document.</li>
<li>Prompting to run in:
<ul>
<li>a new instance of Firefox, possibly with an option to choose which Profile</li>
<li>a new tab in the originating Firefox window</li>
<li>a new window from the originating Firefox instance</li>
</ul>
</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/04/08/ff-cant-open-html-doc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice.org OpenSolaris Build Presentation</title>
		<link>http://tiago.kamots.net/2009/03/26/ooo-opensolaris-build-presentation/</link>
		<comments>http://tiago.kamots.net/2009/03/26/ooo-opensolaris-build-presentation/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 22:09:49 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=77</guid>
		<description><![CDATA[I had to present my work-to-date on the OpenOffice.org OpenSolaris Build project. Here&#8217;s the presentation I put together.
Download the OpenSolaris Build presentation [in PDF format]
]]></description>
			<content:encoded><![CDATA[<p>I had to present my work-to-date on the <a title="Education Project - Project Listing at the OpenOffice.org wiki" href="http://wiki.services.openoffice.org/wiki/Education_Project/Effort#.28Seneca_4.29_Build_OOo_on_OpenSolaris" target="_blank">OpenOffice.org OpenSolaris Build project</a>. Here&#8217;s the presentation I put together.</p>
<p><a href="http://tiago.kamots.net/wp-content/uploads/2009/03/solarisbuild.pdf" target="_blank">Download the OpenSolaris Build presentation [in PDF format]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/03/26/ooo-opensolaris-build-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun Software Stack</title>
		<link>http://tiago.kamots.net/2009/03/01/sun-software-stack/</link>
		<comments>http://tiago.kamots.net/2009/03/01/sun-software-stack/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 02:15:18 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=43</guid>
		<description><![CDATA[I have a lot of Sun in my computer, but no more brightness than usual.
I have installed the following Sun-related software:

VirtualBox 2.1.4 on my Windows Vista Ultimate 64-bit PC
created a virtual machine from an OpenSolaris 2008.11 DVD I had received via mail by Sun for free using VirtualBox
had to download Sun Studio 11 in my [...]]]></description>
			<content:encoded><![CDATA[<p>I have a lot of <a title="Sun Microsystems - hardware and software vendor" href="http://www.sun.com/" target="_blank"><strong>Sun</strong></a> in my computer, but no more brightness than usual.</p>
<p>I have installed the following Sun-related software:</p>
<ul>
<li><strong><a title="VirtualBox" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a></strong> 2.1.4 on my <a title="Windows Vista article on Wikipedia" href="http://en.wikipedia.org/wiki/Windows_Vista" target="_blank">Windows Vista</a> <a title="Windows Vista editions article on Wikipedia" href="http://en.wikipedia.org/wiki/Windows_Vista_editions" target="_blank">Ultimate</a> <a title="64-bit computer architecture article on Wikipedia" href="http://en.wikipedia.org/wiki/64-bit" target="_blank">64-bit</a> PC</li>
<li>created a <a title="Virtual Machine article on Wikipedia" href="http://en.wikipedia.org/wiki/Virtual_machine" target="_blank">virtual machine</a> from an <strong><a title="OpenSolaris - the open source version of Sun's Solaris operating system" href="http://www.opensolaris.com/" target="_blank">OpenSolaris</a></strong> 2008.11 DVD I had <a title="OpenSolaris Free CD Order Form" href="https://oscd.sun.com/" target="_blank">received via mail</a> by Sun for free using VirtualBox</li>
<li>had to download <strong><a title="Sun Studio - a developer toolchain aimed at Solaris and Linux users" href="http://developers.sun.com/sunstudio/" target="_blank">Sun Studio</a></strong> 11 in my OpenSolaris install since it came completely bare (no compilers, nothing.)</li>
</ul>
<p>After that, I had to download the OpenOffice.org source code that I would be using (<a title="SVN directory for DEV300_m42" href="http://svn.services.openoffice.org/ooo/tags/DEV300_m42/" target="_blank">DEV300_m42</a>) which was made open source by Sun too.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/03/01/sun-software-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual Virtualization Pains</title>
		<link>http://tiago.kamots.net/2009/02/28/virtual-virtualization-pains/</link>
		<comments>http://tiago.kamots.net/2009/02/28/virtual-virtualization-pains/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 18:12:49 +0000</pubDate>
		<dc:creator>Tiago Moreira</dc:creator>
				<category><![CDATA[OpenOffice.org]]></category>
		<category><![CDATA[Seneca College]]></category>

		<guid isPermaLink="false">http://tiago.kamots.net/?p=46</guid>
		<description><![CDATA[Since I only have one desktop PC for my use, I was not about to be crazy and re-format it with OpenSolaris for my project. Software and hardware have come a long way from the days where you had to have multiple partitions to boot to in order to use different operating systems. Nowadays, virtualization [...]]]></description>
			<content:encoded><![CDATA[<p>Since I only have one <a title="Desktop Computer article on Wikipedia" href="http://en.wikipedia.org/wiki/Desktop_computer" target="_blank">desktop PC</a> for my use, I was not about to be crazy and re-format it with OpenSolaris for my project. Software and hardware have come a long way from the days where you had to have multiple <a title="Disk Partitioning article on Wikipedia" href="http://en.wikipedia.org/wiki/Disk_partitioning" target="_blank">partitions</a> to boot to in order to use different operating systems. Nowadays, <a title="Platform Virtualization article on Wikipedia" href="http://en.wikipedia.org/wiki/Platform_virtualization" target="_blank">virtualization</a> is only a few software downloads and maybe a growing pain or two away. Not only will virtualization allow you to run a different operating system inside of your regular operating system, but it&#8217;s also a cool trick to do at parties. Honest.</p>
<p>I had some previous experiences with virtualization:</p>
<ul>
<li><a title="VMware Workstation article on Wikipedia | official VMware site is also on the wiki" href="http://en.wikipedia.org/wiki/VMware_Workstation" target="_blank">VMware Workstation</a> [Was just becoming free around the time I tried it]
<ul>
<li>Option overkill for what I wanted. Since this was the first time I had used virtual machines it scared me away a bit. VMware is the gorilla of virtualization from what I&#8217;ve seen and heard from smart people.</li>
</ul>
</li>
<li><a title="Microsoft Virtual PC article on Wikipedia | official site is linked from wiki" href="http://en.wikipedia.org/wiki/Microsoft_Virtual_PC" target="_blank">Microsoft Virtual PC</a> [Free from <a title="Microsoft Corporation - Makers of Windows and doors to computer usage around the world" href="http://www.microsoft.com/" target="_blank">Microsoft</a>]
<ul>
<li>The easiest setup-and-play experience for any Windows-friendly operating system (<a title="Microsoft Windows article on Wikipedia" href="http://en.wikipedia.org/wiki/Microsoft_Windows" target="_blank">Windows</a>, <a title="DOS article on Wikipedia" href="http://en.wikipedia.org/wiki/DOS" target="_blank">DOS</a>, <a title="OS/2 article on Wikipedia" href="http://en.wikipedia.org/wiki/OS/2" target="_blank">OS/2</a>). Running Windows within Windows is amazing on this; you have complete clipboard sharing, native display settings, shared folders, host device usage (printers, USB, etc.)&#8230; it&#8217;s pretty sweet. But it wouldn&#8217;t cut it for OpenSolaris. To be fair, things may have changed and perhaps OpenSolaris would&#8217;ve worked on Virtual PC but I wanted to try something new.</li>
</ul>
</li>
</ul>
<p>Reading some information about OOo development and OpenSolaris made me aware of another Sun project called <strong><a title="VirtualBox.org" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a></strong>. I did some research into it and it turns out to be a fantastic virtualization product. So I downloaded it (version 2.1.4) and began setting up  <strong></strong><strong><a title="OpenSolaris - the open source version of Sun's Solaris operating system" href="http://www.opensolaris.com/" target="_blank">OpenSolaris</a></strong> 2008.11 from the DVD I had received. Bad idea.</p>
<p>One of the benefits of using virtualization software is that you can &#8220;cheat&#8221; through various means when installing a guest operating system. Instead of using optical media (CDs, DVDs) you should opt to mount an <a title="ISO image article on Wikipedia" href="http://en.wikipedia.org/wiki/ISO_image" target="_blank">ISO image</a> (usually files with the .ISO extension) from a hard drive. This will save you <em>a lot</em> of time. (At the least, <em>some</em> time. Your mileage may vary.) It took me just under 60 minutes to perform a default install of OpenSolaris.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiago.kamots.net/2009/02/28/virtual-virtualization-pains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
