<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Hacking Quicken to Import QFX Files on OS X</title>
	<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/</link>
	<description>Enjoying Digitally Enhanced Living</description>
	<pubDate>Mon, 06 Oct 2008 12:47:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>By: Drupal One &#187; Hack Quicken to work with banks that don&#8217;t support Macs.</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-84</link>
		<author>Drupal One &#187; Hack Quicken to work with banks that don&#8217;t support Macs.</author>
		<pubDate>Wed, 22 Feb 2006 05:42:20 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-84</guid>
					<description>[...] read more&#160;&#124;&#160;digg story [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] read more&nbsp;|&nbsp;digg story [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: R Jones</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-108</link>
		<author>R Jones</author>
		<pubDate>Tue, 07 Mar 2006 03:14:53 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-108</guid>
					<description>I'm very interested in what you have setup for automatic converstion.  Your instructions worked fine and got my file to work with Quicken 2005 for Mac.  Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;m very interested in what you have setup for automatic converstion.  Your instructions worked fine and got my file to work with Quicken 2005 for Mac.  Thanks!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: J Smith</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-109</link>
		<author>J Smith</author>
		<pubDate>Wed, 08 Mar 2006 06:08:59 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-109</guid>
					<description>Whenever the Quicken application transmits a 'Request for Authorization to Permit' (call it a RAP) to Intuit, it takes time for the message to travel to Inuit, more time for Intuit to process the message and formulate the response, and still more time for the responding message to travel back to the user's computer and be gated into the application.

During all that time, the application sits idle awaiting Intuit's message.  When it does arrive, the application compares what it receives with its built-in rules to decide whether it is authorized to proceed with the download.  Once authorized, it will stop watching for a 'letter from home', and it will proceed with the download.

Any conversation that goes on between the Quicken application and Intuit must follow standard OS X communications protocols and travel on the same internal hardware bus that is used by every software application that talks over a modem port  So:

What if a hack where designed to:
• Detect whenever Quicken sends a RAP to Intuit;
• Whenever such is detected, the hack Immediately puts the desired response onto the bus, addressed to the Quicken application.

It would seem that Quicken would process the message just as if it came from Intuit.  By the time Intuit's transmission arrived, it would be too late -- the Quicken application would already have smiled upon the OFX file and would be busy with the download.  Intuit's message would probably not even reach the user's Mac until it was all over.

Would that be practical?</description>
		<content:encoded><![CDATA[<p>Whenever the Quicken application transmits a &#8216;Request for Authorization to Permit&#8217; (call it a RAP) to Intuit, it takes time for the message to travel to Inuit, more time for Intuit to process the message and formulate the response, and still more time for the responding message to travel back to the user&#8217;s computer and be gated into the application.</p>
<p>During all that time, the application sits idle awaiting Intuit&#8217;s message.  When it does arrive, the application compares what it receives with its built-in rules to decide whether it is authorized to proceed with the download.  Once authorized, it will stop watching for a &#8216;letter from home&#8217;, and it will proceed with the download.</p>
<p>Any conversation that goes on between the Quicken application and Intuit must follow standard OS X communications protocols and travel on the same internal hardware bus that is used by every software application that talks over a modem port  So:</p>
<p>What if a hack where designed to:<br />
• Detect whenever Quicken sends a RAP to Intuit;<br />
• Whenever such is detected, the hack Immediately puts the desired response onto the bus, addressed to the Quicken application.</p>
<p>It would seem that Quicken would process the message just as if it came from Intuit.  By the time Intuit&#8217;s transmission arrived, it would be too late &#8212; the Quicken application would already have smiled upon the OFX file and would be busy with the download.  Intuit&#8217;s message would probably not even reach the user&#8217;s Mac until it was all over.</p>
<p>Would that be practical?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-110</link>
		<author>Mark</author>
		<pubDate>Wed, 08 Mar 2006 06:26:24 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-110</guid>
					<description>I think that is definitely something that would work.  However injecting something back into the running program without crashing it seems like it might be pretty difficult.

As far as I can tell the easiest solution would be to setup a server that will respond to any request as if it was Intuit saying that the bank supports Macs.  This server wouldn't even need to look at the contents of the request, it would just need to respond "yes" in whatever manner the client is looking for.

Once the server was in place, users would just need to trick OS X into routing the requests to this server instead of to Intuit.  This is fairly trivial and amounts to adding a line in the hosts file.  Something like:
&lt;blockquote&gt;
auth_server.intuit.com  67.123.123.123
&lt;/blockquote&gt;
where the ip address is the address of the server that will allow any bank code.

Once this type of server was in place, everyone could use it by simply adding a single line to their host file.</description>
		<content:encoded><![CDATA[<p>I think that is definitely something that would work.  However injecting something back into the running program without crashing it seems like it might be pretty difficult.</p>
<p>As far as I can tell the easiest solution would be to setup a server that will respond to any request as if it was Intuit saying that the bank supports Macs.  This server wouldn&#8217;t even need to look at the contents of the request, it would just need to respond &#8220;yes&#8221; in whatever manner the client is looking for.</p>
<p>Once the server was in place, users would just need to trick OS X into routing the requests to this server instead of to Intuit.  This is fairly trivial and amounts to adding a line in the hosts file.  Something like:</p>
<blockquote><p>
auth_server.intuit.com  67.123.123.123
</p></blockquote>
<p>where the ip address is the address of the server that will allow any bank code.</p>
<p>Once this type of server was in place, everyone could use it by simply adding a single line to their host file.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: PJP</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-111</link>
		<author>PJP</author>
		<pubDate>Wed, 08 Mar 2006 19:18:36 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-111</guid>
					<description>I have the windows version and also have a problem.  Do you know if the described solution will work with windows?</description>
		<content:encoded><![CDATA[<p>I have the windows version and also have a problem.  Do you know if the described solution will work with windows?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: dr theopolis</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-121</link>
		<author>dr theopolis</author>
		<pubDate>Sun, 02 Apr 2006 03:14:44 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-121</guid>
					<description>incredible that intuit is so evil - but the hack works well and doesn't add much to the workflow...</description>
		<content:encoded><![CDATA[<p>incredible that intuit is so evil - but the hack works well and doesn&#8217;t add much to the workflow&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: shane</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-122</link>
		<author>shane</author>
		<pubDate>Wed, 05 Apr 2006 02:36:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-122</guid>
					<description>how can we do the same for investment accounts.  i'm not having any luck using this hack in these cases, but i also don't have details on an investment account that works.

thanks,
shane</description>
		<content:encoded><![CDATA[<p>how can we do the same for investment accounts.  i&#8217;m not having any luck using this hack in these cases, but i also don&#8217;t have details on an investment account that works.</p>
<p>thanks,<br />
shane</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Matt Ryan</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-123</link>
		<author>Matt Ryan</author>
		<pubDate>Fri, 07 Apr 2006 02:40:54 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-123</guid>
					<description>Excellent article..wondered about this a long while.

If you have an Automator script for this, please share.  :)</description>
		<content:encoded><![CDATA[<p>Excellent article..wondered about this a long while.</p>
<p>If you have an Automator script for this, please share.  <img src='http://www.digital501.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Kenneth</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-131</link>
		<author>Kenneth</author>
		<pubDate>Fri, 14 Apr 2006 16:20:07 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-131</guid>
					<description>That is an incredibly evil, greedy business practice. So much for transparent cross-compatibility. It seems that Intuit would recognize that many users don't purchase Quicken for the Mac as it has limited bank support (and for good reason - I don't see why they should be able to extort additional money from banks just to support their Mac clients).</description>
		<content:encoded><![CDATA[<p>That is an incredibly evil, greedy business practice. So much for transparent cross-compatibility. It seems that Intuit would recognize that many users don&#8217;t purchase Quicken for the Mac as it has limited bank support (and for good reason - I don&#8217;t see why they should be able to extort additional money from banks just to support their Mac clients).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: John</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-190</link>
		<author>John</author>
		<pubDate>Fri, 12 May 2006 15:59:11 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-190</guid>
					<description>I have an investment account.  It appears there is a different tag 
ENG
5550

Merrill Lynch &#38; Co., Inc.
5550


I can't tell if there is another user id tag that needs to change.  Quicken doesn't accept changing the bid and the fid to 3350.  If anyone has an investment acct strategy please post.  Thanks</description>
		<content:encoded><![CDATA[<p>I have an investment account.  It appears there is a different tag<br />
ENG<br />
5550</p>
<p>Merrill Lynch &amp; Co., Inc.<br />
5550</p>
<p>I can&#8217;t tell if there is another user id tag that needs to change.  Quicken doesn&#8217;t accept changing the bid and the fid to 3350.  If anyone has an investment acct strategy please post.  Thanks</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: John</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-191</link>
		<author>John</author>
		<pubDate>Fri, 12 May 2006 23:42:28 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-191</guid>
					<description>Sorry the tags are bracketLANGUAGEclose bracketENG
bracketINTU.BIDclose bracket5550
bracketFIclose bracket
bracketORGclose bracketMerrill Lynch &#38; Co., Inc.
bracketFIDclose bracket5550
bracket/FIclose bracket</description>
		<content:encoded><![CDATA[<p>Sorry the tags are bracketLANGUAGEclose bracketENG<br />
bracketINTU.BIDclose bracket5550<br />
bracketFIclose bracket<br />
bracketORGclose bracketMerrill Lynch &amp; Co., Inc.<br />
bracketFIDclose bracket5550<br />
bracket/FIclose bracket</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: kathy</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-231</link>
		<author>kathy</author>
		<pubDate>Fri, 26 May 2006 18:41:09 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-231</guid>
					<description>I tried changing the ofx file as indicated, using Merrill Lynch for Vanguard.  I did not change broker id which is long.  I continue to get the financial institution cannot be verified message.  I cannot import a qfx file, or open the qfx file, only import a webconnect file that is on my desktop, but the message seems to indicate it is going to the institution on the web.,  Any ideas? 

Thanks for the info so far.  I've just switched to Mac and except for the quicken problem, I'm very happy.  But quicken is a real disadvantage.  I'm keeping my windows pc just to be able to use quicken on windows to manage my finances.  But I keep trying to get mac quicken to at least minimally work.</description>
		<content:encoded><![CDATA[<p>I tried changing the ofx file as indicated, using Merrill Lynch for Vanguard.  I did not change broker id which is long.  I continue to get the financial institution cannot be verified message.  I cannot import a qfx file, or open the qfx file, only import a webconnect file that is on my desktop, but the message seems to indicate it is going to the institution on the web.,  Any ideas? </p>
<p>Thanks for the info so far.  I&#8217;ve just switched to Mac and except for the quicken problem, I&#8217;m very happy.  But quicken is a real disadvantage.  I&#8217;m keeping my windows pc just to be able to use quicken on windows to manage my finances.  But I keep trying to get mac quicken to at least minimally work.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Wilson</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-241</link>
		<author>Wilson</author>
		<pubDate>Sat, 03 Jun 2006 06:10:00 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-241</guid>
					<description>After replacing the &#60;INTU.BID&#62; and the &#60;INTU.USERID&#62; with 3350, and 5431, respectively, I am still encountering the same problem.  Could someone who has gotten this to work post what they have between the &#60;FI&#62; and &#60;/FI&#62; tags?  Or, more specifically, what do you have for the &#60;ORG&#62; and &#60;FID&#62; fields?</description>
		<content:encoded><![CDATA[<p>After replacing the &lt;INTU.BID&gt; and the &lt;INTU.USERID&gt; with 3350, and 5431, respectively, I am still encountering the same problem.  Could someone who has gotten this to work post what they have between the &lt;FI&gt; and &lt;/FI&gt; tags?  Or, more specifically, what do you have for the &lt;ORG&gt; and &lt;FID&gt; fields?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Melanie</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-244</link>
		<author>Melanie</author>
		<pubDate>Tue, 06 Jun 2006 03:02:32 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-244</guid>
					<description>This is great info.  I just spent 1.5 hours with Chase Bank and they didn't give me a clue.  Intuit was equally clueless. However I just download the R4 update for Quicken 2005 for Mac and now I can't even get the .qfx file on my desktop to hack into I just get a bad server response.  I can download qfx files from Bank of America and CitiCards just fine.  I wonder if their R4 update prevents the qfx from even being downloaded.</description>
		<content:encoded><![CDATA[<p>This is great info.  I just spent 1.5 hours with Chase Bank and they didn&#8217;t give me a clue.  Intuit was equally clueless. However I just download the R4 update for Quicken 2005 for Mac and now I can&#8217;t even get the .qfx file on my desktop to hack into I just get a bad server response.  I can download qfx files from Bank of America and CitiCards just fine.  I wonder if their R4 update prevents the qfx from even being downloaded.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-245</link>
		<author>Mark</author>
		<pubDate>Tue, 06 Jun 2006 11:54:32 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-245</guid>
					<description>It sounds like people are having trouble getting this method to work with investment accounts.  My first guess is that the numbers I provided in this article are for a checking/savings account.  Investment accounts may require using the BID and USERID for a company that is setup for Quicken and uses Investment accounts.  

Also, Melanie, you have to manually download the QFX file from Chase Bank's website.  You don't want Quicken to automatically open the file, so you'll have to do a "Save As" or "Download File" from your browser.</description>
		<content:encoded><![CDATA[<p>It sounds like people are having trouble getting this method to work with investment accounts.  My first guess is that the numbers I provided in this article are for a checking/savings account.  Investment accounts may require using the BID and USERID for a company that is setup for Quicken and uses Investment accounts.  </p>
<p>Also, Melanie, you have to manually download the QFX file from Chase Bank&#8217;s website.  You don&#8217;t want Quicken to automatically open the file, so you&#8217;ll have to do a &#8220;Save As&#8221; or &#8220;Download File&#8221; from your browser.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: &#187; Quicken for Mac Hack</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-247</link>
		<author>&#187; Quicken for Mac Hack</author>
		<pubDate>Wed, 07 Jun 2006 02:05:27 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-247</guid>
					<description>[...] Hacking Quicken to Import QFX Files on OS XBlackberry 7100t with OS X [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Hacking Quicken to Import QFX Files on OS XBlackberry 7100t with OS X [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jo</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-306</link>
		<author>Jo</author>
		<pubDate>Sun, 25 Jun 2006 04:17:26 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-306</guid>
					<description>So, my bank says it DOES support Mac, and I downloaded the appropriate file, but it still gives me the identical "unable to verify" message. 

I found the first line of your formula above and changed the number, but the second line, userid, I couldn't find in text edit. So I changed the first line, and lo, my info imported.

This is so weird.</description>
		<content:encoded><![CDATA[<p>So, my bank says it DOES support Mac, and I downloaded the appropriate file, but it still gives me the identical &#8220;unable to verify&#8221; message. </p>
<p>I found the first line of your formula above and changed the number, but the second line, userid, I couldn&#8217;t find in text edit. So I changed the first line, and lo, my info imported.</p>
<p>This is so weird.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jo</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-307</link>
		<author>Jo</author>
		<pubDate>Sun, 25 Jun 2006 04:37:45 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-307</guid>
					<description>I don't get how the renaming-the-account thing is supposed to go, though. How can one do this on a regular basis? I'm too tired, and I'm very unhappy with how much I spent on this tangle of a product.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t get how the renaming-the-account thing is supposed to go, though. How can one do this on a regular basis? I&#8217;m too tired, and I&#8217;m very unhappy with how much I spent on this tangle of a product.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Gerry</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-403</link>
		<author>Gerry</author>
		<pubDate>Fri, 18 Aug 2006 20:03:25 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-403</guid>
					<description>I use Quicken Mac 2005 and had this problem. I have investment accounts at an unsupported institution, so I replaced the id with that in an ETrade qfx file and it works fine. - Just comes up under etrade in the download window.


9999
4513</description>
		<content:encoded><![CDATA[<p>I use Quicken Mac 2005 and had this problem. I have investment accounts at an unsupported institution, so I replaced the id with that in an ETrade qfx file and it works fine. - Just comes up under etrade in the download window.</p>
<p>9999<br />
4513</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steven</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-456</link>
		<author>Steven</author>
		<pubDate>Sat, 16 Sep 2006 20:56:28 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-456</guid>
					<description>Aha! Those digits work for my investment account. Thanks Gerry.</description>
		<content:encoded><![CDATA[<p>Aha! Those digits work for my investment account. Thanks Gerry.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steven</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-458</link>
		<author>Steven</author>
		<pubDate>Sun, 17 Sep 2006 19:55:11 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-458</guid>
					<description>I take that back -- it will only work once, and afterward it is impossible to associate the account in Quicken with a new downloaded QFX. Oh, well.  Back to Windows for my finances?  A curse on Intuit!</description>
		<content:encoded><![CDATA[<p>I take that back &#8212; it will only work once, and afterward it is impossible to associate the account in Quicken with a new downloaded QFX. Oh, well.  Back to Windows for my finances?  A curse on Intuit!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Liz</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1148</link>
		<author>Liz</author>
		<pubDate>Sun, 12 Nov 2006 02:39:22 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1148</guid>
					<description>I'm getting a different error when trying to import to mac from Windows -- errors says I have too many categories.  Does anyone know a way around this?  I don't want to omit categories...</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting a different error when trying to import to mac from Windows &#8212; errors says I have too many categories.  Does anyone know a way around this?  I don&#8217;t want to omit categories&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1149</link>
		<author>Mark</author>
		<pubDate>Sun, 12 Nov 2006 02:44:14 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1149</guid>
					<description>Liz -- you might try checking the instructions here:
http://web.intuit.com/support/quicken/2002/mac/2159.html

I haven't ever tried importing from a windows version to the OS X version, so I'm not sure.  You might try typing in the exact error message in quotes in Google and see if anyone else has had experience with it.</description>
		<content:encoded><![CDATA[<p>Liz &#8212; you might try checking the instructions here:<br />
<a href="http://web.intuit.com/support/quicken/2002/mac/2159.html" rel="nofollow">http://web.intuit.com/support/quicken/2002/mac/2159.html</a></p>
<p>I haven&#8217;t ever tried importing from a windows version to the OS X version, so I&#8217;m not sure.  You might try typing in the exact error message in quotes in Google and see if anyone else has had experience with it.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1475</link>
		<author>Chris</author>
		<pubDate>Wed, 22 Nov 2006 01:51:14 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-1475</guid>
					<description>Finally a better solution for investment accounts (for me, at least).

There's a shareware program mentioned in a Macworld article -- find it here:

http://www.thewoodwards.us/sw/QIFMaster/index.shtml

It requires some first-time setup and may have some quirks to be found.  But for me, at least, it's a lifesaver.  It will let me take the downloaded QFX file from my investment account and convert it to a QIF file that I can then import into Quicken.

Much better than manually entering 20 transactions or more each month.  I think this guy has earned his shareware price from me.</description>
		<content:encoded><![CDATA[<p>Finally a better solution for investment accounts (for me, at least).</p>
<p>There&#8217;s a shareware program mentioned in a Macworld article &#8212; find it here:</p>
<p><a href="http://www.thewoodwards.us/sw/QIFMaster/index.shtml" rel="nofollow">http://www.thewoodwards.us/sw/QIFMaster/index.shtml</a></p>
<p>It requires some first-time setup and may have some quirks to be found.  But for me, at least, it&#8217;s a lifesaver.  It will let me take the downloaded QFX file from my investment account and convert it to a QIF file that I can then import into Quicken.</p>
<p>Much better than manually entering 20 transactions or more each month.  I think this guy has earned his shareware price from me.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Olaf</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-2725</link>
		<author>Olaf</author>
		<pubDate>Mon, 01 Jan 2007 22:55:03 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-2725</guid>
					<description>Many thanks - the Wash Mutual info did the trick for my checking account. I too despise Intuit's business model and have looked for alternatives to it for Mac, such as iBank and Moneydance, but they are not there yet. Too bad, because Quicken [and Quickbooks, which I use for business] make no attempt to serve Macs. Their updated programs seem to be half-hearted patches - rotten meat for an unwanted pet that can't break free rather than juicy steaks for a pet that is so loved it doesn't want to run away!</description>
		<content:encoded><![CDATA[<p>Many thanks - the Wash Mutual info did the trick for my checking account. I too despise Intuit&#8217;s business model and have looked for alternatives to it for Mac, such as iBank and Moneydance, but they are not there yet. Too bad, because Quicken [and Quickbooks, which I use for business] make no attempt to serve Macs. Their updated programs seem to be half-hearted patches - rotten meat for an unwanted pet that can&#8217;t break free rather than juicy steaks for a pet that is so loved it doesn&#8217;t want to run away!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Michael Van Voorhis</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-2735</link>
		<author>Michael Van Voorhis</author>
		<pubDate>Tue, 02 Jan 2007 02:19:11 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-2735</guid>
					<description>Mark,

Thanks for this information.  I was able to load my checking and savings account information from my institution.  However, it did not download my credit card information.  Would you happen to have a solution for this?

Mike V.</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>Thanks for this information.  I was able to load my checking and savings account information from my institution.  However, it did not download my credit card information.  Would you happen to have a solution for this?</p>
<p>Mike V.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ken</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-3084</link>
		<author>Ken</author>
		<pubDate>Mon, 15 Jan 2007 01:31:15 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-3084</guid>
					<description>Using either of the above BID / USERIDs, I got halfway through, Quicken verified them as valid.  However, I'm trying to import data from a UK bank account, and got the message 'Downloaded data does not match the currency of your Quicken account'.  Does anyone have a BID / USERID for a UK bank?</description>
		<content:encoded><![CDATA[<p>Using either of the above BID / USERIDs, I got halfway through, Quicken verified them as valid.  However, I&#8217;m trying to import data from a UK bank account, and got the message &#8216;Downloaded data does not match the currency of your Quicken account&#8217;.  Does anyone have a BID / USERID for a UK bank?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-3663</link>
		<author>Adam</author>
		<pubDate>Mon, 29 Jan 2007 18:54:36 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-3663</guid>
					<description>So, there is a program that can really help with this conversion.
http://www.xs4all.nl/~csmale/mt2ofx/en/

It even has an option for adding a custom bank ID to the file as it converts it from OFX to QFX.  It takes some digging to find it, but you bascially have to set one of the parameters to the 'OFX' default script to the BID you want in the file. 

I am also having trouble with UK currencies. 

FYI.  There's a sweet list of ID's ALREADY on your HD.  C:\Documents and Settings\All Users\Application Data\Intuit\Quicken\Inet\Common\Localweb\Banklist\fidir.txt

Thanks to this guy: http://www.cobbie.com/blog/2005/12/21/importing-ofx-data-into-quicken-20052006/</description>
		<content:encoded><![CDATA[<p>So, there is a program that can really help with this conversion.<br />
<a href="http://www.xs4all.nl/~csmale/mt2ofx/en/" rel="nofollow">http://www.xs4all.nl/~csmale/mt2ofx/en/</a></p>
<p>It even has an option for adding a custom bank ID to the file as it converts it from OFX to QFX.  It takes some digging to find it, but you bascially have to set one of the parameters to the &#8216;OFX&#8217; default script to the BID you want in the file. </p>
<p>I am also having trouble with UK currencies. </p>
<p>FYI.  There&#8217;s a sweet list of ID&#8217;s ALREADY on your HD.  C:\Documents and Settings\All Users\Application Data\Intuit\Quicken\Inet\Common\Localweb\Banklist\fidir.txt</p>
<p>Thanks to this guy: <a href="http://www.cobbie.com/blog/2005/12/21/importing-ofx-data-into-quicken-20052006/" rel="nofollow">http://www.cobbie.com/blog/2005/12/21/importing-ofx-data-into-quicken-20052006/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sonia</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4110</link>
		<author>Sonia</author>
		<pubDate>Fri, 09 Feb 2007 04:01:08 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4110</guid>
					<description>Blessings on you!!! You have saved me hours of data entry. 

This hack works great with Quicken 2006 and our E-Trade accounts, including checking and savings. Brokerage and securities appear to work with Mac (no hack) but other accounts don't. 

Thank you! Let's hope Intuit will improve their ethics and stop crippling the program we bought from them.</description>
		<content:encoded><![CDATA[<p>Blessings on you!!! You have saved me hours of data entry. </p>
<p>This hack works great with Quicken 2006 and our E-Trade accounts, including checking and savings. Brokerage and securities appear to work with Mac (no hack) but other accounts don&#8217;t. </p>
<p>Thank you! Let&#8217;s hope Intuit will improve their ethics and stop crippling the program we bought from them.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jones</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4291</link>
		<author>Jones</author>
		<pubDate>Tue, 13 Feb 2007 20:56:28 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4291</guid>
					<description>Has anybody had any breakthroughs with the investment accounts?</description>
		<content:encoded><![CDATA[<p>Has anybody had any breakthroughs with the investment accounts?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4302</link>
		<author>Frank</author>
		<pubDate>Wed, 14 Feb 2007 02:31:12 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4302</guid>
					<description>I'm wondering about Sharbuilder accounts myself</description>
		<content:encoded><![CDATA[<p>I&#8217;m wondering about Sharbuilder accounts myself</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: celo</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4676</link>
		<author>celo</author>
		<pubDate>Wed, 21 Feb 2007 18:54:13 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4676</guid>
					<description>Stop using Quicken. Use and support Moneydance. They allow you to import OFX, QFX, QIF, and text just fine. 

They also just released a new 2007 update, which improves on a lot of things. There are some missing things (budgetting needs some more features), but it beats the hell out of giving money to crooked Intuit.

Boycott them. Put your money where your mouth is.</description>
		<content:encoded><![CDATA[<p>Stop using Quicken. Use and support Moneydance. They allow you to import OFX, QFX, QIF, and text just fine. </p>
<p>They also just released a new 2007 update, which improves on a lot of things. There are some missing things (budgetting needs some more features), but it beats the hell out of giving money to crooked Intuit.</p>
<p>Boycott them. Put your money where your mouth is.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Chow</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4803</link>
		<author>Chow</author>
		<pubDate>Sat, 24 Feb 2007 23:09:04 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-4803</guid>
					<description>Intuit has disabled QFX import for older versions of Quicken (I'm using 2003 for OS X). I tried switching the BID but it doesn't seem to work.</description>
		<content:encoded><![CDATA[<p>Intuit has disabled QFX import for older versions of Quicken (I&#8217;m using 2003 for OS X). I tried switching the BID but it doesn&#8217;t seem to work.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Roundi</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-5222</link>
		<author>Roundi</author>
		<pubDate>Sun, 04 Mar 2007 01:00:41 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-5222</guid>
					<description>If you cannot import ofx, you can import qif in Quicken 2005, 2006, 2007 !

Check the trick in the following web page: http://www.somacon.com/p468.php

Enjoy !</description>
		<content:encoded><![CDATA[<p>If you cannot import ofx, you can import qif in Quicken 2005, 2006, 2007 !</p>
<p>Check the trick in the following web page: <a href="http://www.somacon.com/p468.php" rel="nofollow">http://www.somacon.com/p468.php</a></p>
<p>Enjoy !</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-8849</link>
		<author>Adam</author>
		<pubDate>Sat, 28 Apr 2007 12:53:50 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-8849</guid>
					<description>The download into OSX for an investment account using the E-Trade numbers 4513 &#38; 9999 worked a couple of times at the end of 2006, but stopped working.  Intuit verifies the account, but then Quicken makes me create a new account and then I get an error message:

Data has been downloaded for an account () that is not defined in your Quicken data file.  Contact Quicken customer service [OL-362].

It worked so well the first few times for investment accounts!  Does anyone know what happened?

Adam</description>
		<content:encoded><![CDATA[<p>The download into OSX for an investment account using the E-Trade numbers 4513 &amp; 9999 worked a couple of times at the end of 2006, but stopped working.  Intuit verifies the account, but then Quicken makes me create a new account and then I get an error message:</p>
<p>Data has been downloaded for an account () that is not defined in your Quicken data file.  Contact Quicken customer service [OL-362].</p>
<p>It worked so well the first few times for investment accounts!  Does anyone know what happened?</p>
<p>Adam</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Bob Zemeski</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-9688</link>
		<author>Bob Zemeski</author>
		<pubDate>Sun, 06 May 2007 13:41:14 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-9688</guid>
					<description>Why not boycott Quicken?
Would it not be more beneficial to find a programme that works with the Mac and not fool with Quicken -- let them go soak.

Bob</description>
		<content:encoded><![CDATA[<p>Why not boycott Quicken?<br />
Would it not be more beneficial to find a programme that works with the Mac and not fool with Quicken &#8212; let them go soak.</p>
<p>Bob</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 14 Must-Have Online Banking Features at Productivity501</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-14085</link>
		<author>14 Must-Have Online Banking Features at Productivity501</author>
		<pubDate>Mon, 11 Jun 2007 10:14:51 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-14085</guid>
					<description>[...] and download new transactions. If you are using Quicken on a Mac, make sure the bank is paying Quicken&#8217;s extortion fee so the files will work with Mac [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] and download new transactions. If you are using Quicken on a Mac, make sure the bank is paying Quicken&#8217;s extortion fee so the files will work with Mac [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Emma</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-17594</link>
		<author>Emma</author>
		<pubDate>Wed, 25 Jul 2007 23:36:47 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-17594</guid>
					<description>Just a FYI I tried the above hack and couldn't get it to work.  However I found a free download program that converts qfx files to qif...and then voila it will import and work!  Had problems making it download to the account I wanted but if anyone else is stuck like I was this may be able to help you.

The program is called qif master and I found it on versiontracker.com</description>
		<content:encoded><![CDATA[<p>Just a FYI I tried the above hack and couldn&#8217;t get it to work.  However I found a free download program that converts qfx files to qif&#8230;and then voila it will import and work!  Had problems making it download to the account I wanted but if anyone else is stuck like I was this may be able to help you.</p>
<p>The program is called qif master and I found it on versiontracker.com</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sanjay Aiyagari</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-19213</link>
		<author>Sanjay Aiyagari</author>
		<pubDate>Sat, 25 Aug 2007 16:46:47 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-19213</guid>
					<description>E*Trade's download gives a QFX with INTU.BID as 9899 instead of 9999.  Edit &#38; change to 9999 and it works.  My account is really with E*Trade and E*Trade  advertises Mac Quicken support so I will report this to E*Trade as a Bug in their file.</description>
		<content:encoded><![CDATA[<p>E*Trade&#8217;s download gives a QFX with INTU.BID as 9899 instead of 9999.  Edit &amp; change to 9999 and it works.  My account is really with E*Trade and E*Trade  advertises Mac Quicken support so I will report this to E*Trade as a Bug in their file.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-25764</link>
		<author>Brian</author>
		<pubDate>Wed, 28 Nov 2007 16:34:31 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-25764</guid>
					<description>I went through that tech support nightmare four years ago -- Bank of America said it was an Intuit issue. Intuit said it was a Bank of America issue...  They adamantly denied it was any problem of Intuit's, which I could just not see.  The missing piece was the extra fee the greedy buggers charge..  Now it makes sense.  I attempted this hack myself, but didn't have the codes right to trick the server.

I've used QIFMaster for three years now. Works great once you set it up.  There is a big setup time as you train QIFMaster on how to read and then export the transactions in the data file. But once you do that, it makes things really quick.  I tried letting it run on auto a couple of times, but I prefer to manually review each entry as QIFMaster converts it for the small things (getting the date right).

One thing of note about QIFMaster is that it is just a translator -- if you give it bad data, you'll get bad results.  I've d/l the transactions from my bank on occasion with overlapping periods with the result of having duplicate entries end up in the Quicken file.  Not QIFMaster's fault, mine, but something to watch out for.

I appreciated the article MacWorld did showing alternatives to Quicken.  I want a viable alternative to Quicken.  Intuit bought out and then drove out all decent competition on the mac and then let the product rot... &#62; : &#124;   They fail to follow Apple user interface guildlines routinely -- the print dialog anyone?

The current version I'm using will be my last version of Quicken -- it came with my last iMac I bought  4 years ago. I've already received the eol notices from Intuit -- upgrade or be exiled/left out in the cold/excommunicated....

I need to look at iBank again and check out Moneydance....  just hate converting to a new system.  oh well.

Now, if only Intuit had not bought up ItsDeductible!, I'd be ready for an Intuit free world...  However, we donate too many things to not use ItsDeductible which is tied to MacInTax, oh no wait,  TurboTax for the mac...  grrrrrrrrrrfffffffff

Thank you for the informative article!</description>
		<content:encoded><![CDATA[<p>I went through that tech support nightmare four years ago &#8212; Bank of America said it was an Intuit issue. Intuit said it was a Bank of America issue&#8230;  They adamantly denied it was any problem of Intuit&#8217;s, which I could just not see.  The missing piece was the extra fee the greedy buggers charge..  Now it makes sense.  I attempted this hack myself, but didn&#8217;t have the codes right to trick the server.</p>
<p>I&#8217;ve used QIFMaster for three years now. Works great once you set it up.  There is a big setup time as you train QIFMaster on how to read and then export the transactions in the data file. But once you do that, it makes things really quick.  I tried letting it run on auto a couple of times, but I prefer to manually review each entry as QIFMaster converts it for the small things (getting the date right).</p>
<p>One thing of note about QIFMaster is that it is just a translator &#8212; if you give it bad data, you&#8217;ll get bad results.  I&#8217;ve d/l the transactions from my bank on occasion with overlapping periods with the result of having duplicate entries end up in the Quicken file.  Not QIFMaster&#8217;s fault, mine, but something to watch out for.</p>
<p>I appreciated the article MacWorld did showing alternatives to Quicken.  I want a viable alternative to Quicken.  Intuit bought out and then drove out all decent competition on the mac and then let the product rot&#8230; &gt; : |   They fail to follow Apple user interface guildlines routinely &#8212; the print dialog anyone?</p>
<p>The current version I&#8217;m using will be my last version of Quicken &#8212; it came with my last iMac I bought  4 years ago. I&#8217;ve already received the eol notices from Intuit &#8212; upgrade or be exiled/left out in the cold/excommunicated&#8230;.</p>
<p>I need to look at iBank again and check out Moneydance&#8230;.  just hate converting to a new system.  oh well.</p>
<p>Now, if only Intuit had not bought up ItsDeductible!, I&#8217;d be ready for an Intuit free world&#8230;  However, we donate too many things to not use ItsDeductible which is tied to MacInTax, oh no wait,  TurboTax for the mac&#8230;  grrrrrrrrrrfffffffff</p>
<p>Thank you for the informative article!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Coco</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30610</link>
		<author>Coco</author>
		<pubDate>Tue, 15 Jan 2008 04:25:51 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30610</guid>
					<description>For Windows users, you can use the following freeware app to convert from OFX to QIF.  This will bypass the "sunset" dates that force you to upgrade Quicken for no reason (other than line Intuit's coffers).

http://www.xs4all.nl/~csmale/mt2ofx/en/</description>
		<content:encoded><![CDATA[<p>For Windows users, you can use the following freeware app to convert from OFX to QIF.  This will bypass the &#8220;sunset&#8221; dates that force you to upgrade Quicken for no reason (other than line Intuit&#8217;s coffers).</p>
<p><a href="http://www.xs4all.nl/~csmale/mt2ofx/en/" rel="nofollow">http://www.xs4all.nl/~csmale/mt2ofx/en/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30618</link>
		<author>Daniel</author>
		<pubDate>Sat, 19 Jan 2008 05:29:44 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30618</guid>
					<description>I have Quicken 2002 and an content with what I use it for, but now that it has pas its "sunset" date, I can no longer download from my fianacial institution.

I tried the OFX to QIF converter and it did not make any difference for me (I got the same message).

Quicken advises me that the only solution is to purchase 2008... yeah right.  I can think of several other solutions that does not invlove Intuit.

Would anyone know why it would not work 2002?  Is it bank specific?</description>
		<content:encoded><![CDATA[<p>I have Quicken 2002 and an content with what I use it for, but now that it has pas its &#8220;sunset&#8221; date, I can no longer download from my fianacial institution.</p>
<p>I tried the OFX to QIF converter and it did not make any difference for me (I got the same message).</p>
<p>Quicken advises me that the only solution is to purchase 2008&#8230; yeah right.  I can think of several other solutions that does not invlove Intuit.</p>
<p>Would anyone know why it would not work 2002?  Is it bank specific?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30619</link>
		<author>Daniel</author>
		<pubDate>Sat, 19 Jan 2008 05:46:22 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30619</guid>
					<description>Ooops, I found one problem... I did not select QIF as the output format.  Now that I converted my QFX file to QIF, it seems to read it and not complain about anything, but nothing shows up in Quicken.

Any thoughts.</description>
		<content:encoded><![CDATA[<p>Ooops, I found one problem&#8230; I did not select QIF as the output format.  Now that I converted my QFX file to QIF, it seems to read it and not complain about anything, but nothing shows up in Quicken.</p>
<p>Any thoughts.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Alan Haro</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30638</link>
		<author>Alan Haro</author>
		<pubDate>Mon, 04 Feb 2008 07:11:35 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30638</guid>
					<description>I have Quicken 2002 Deluxe for Windows. I download Web Connect Files (files ending with QFX) onto my computer hard drive. Then I open Quicken, click on a suitable account and click on File...Import...Web Connect File... and navigate to and click on the QFX file. The last time I was able to do this was in Nov2007. I tried this again on 03feb2008 and Intuit CRIPPLED my Quicken program.

Here is how it happens. After I navigate to and click on the QFX file for Financial_Institution_1 (FI#1), Quicken (that is QW.exe) connects thru the internet to ofx-prod-brand.intuit.com, and then thru the internet to a web site for FI#1. Then a message from FI#1 (really it from intuit.com) that says "...INTUIT HAS DISCONTINUED ONLINE SERVICES FOR QUICKEN 2002...". Then another message that says "Quicken is unable to verify financial institution information for this download. Please try again later."

Now my Quicken is CRIPPLED for FI#1. After that, whenever I navigate to and click on a QFX file for FI#1, Quicken does not connect thru the internet, and only the 2nd message appears. But if I navigate to and click on a QFX file for FI#2, the complete process as described above is repeated. Now my Quicken is CRIPPLED for FI#2. 

Here is how I recovered from this unfair and unethical action of Intuit. I had a BACKUP of key Quicken Files. I restored 5 files (Q3.DIR, files ending with QEL,HCX,QSD,QDF). I download QFX files onto my computer hard drive as before. I instructed my firewall to block Quicken (QW.exe) from connecting to any address on the internet. Then I open Quicken and import the QFX file for FI#1 into the Quicken account for FI#1. Another way to block Quicken from connecting thru the internet is to disconnect the internet cable or the phone cable from your computer before opening Quicken for importing the QFX file.

Alas, I suspect the majority does not have a BACKUP. Then perhaps an uninstall and reinstall of Quicken might work. This is speculation on my part as I have not tried it.</description>
		<content:encoded><![CDATA[<p>I have Quicken 2002 Deluxe for Windows. I download Web Connect Files (files ending with QFX) onto my computer hard drive. Then I open Quicken, click on a suitable account and click on File&#8230;Import&#8230;Web Connect File&#8230; and navigate to and click on the QFX file. The last time I was able to do this was in Nov2007. I tried this again on 03feb2008 and Intuit CRIPPLED my Quicken program.</p>
<p>Here is how it happens. After I navigate to and click on the QFX file for Financial_Institution_1 (FI#1), Quicken (that is QW.exe) connects thru the internet to ofx-prod-brand.intuit.com, and then thru the internet to a web site for FI#1. Then a message from FI#1 (really it from intuit.com) that says &#8220;&#8230;INTUIT HAS DISCONTINUED ONLINE SERVICES FOR QUICKEN 2002&#8230;&#8221;. Then another message that says &#8220;Quicken is unable to verify financial institution information for this download. Please try again later.&#8221;</p>
<p>Now my Quicken is CRIPPLED for FI#1. After that, whenever I navigate to and click on a QFX file for FI#1, Quicken does not connect thru the internet, and only the 2nd message appears. But if I navigate to and click on a QFX file for FI#2, the complete process as described above is repeated. Now my Quicken is CRIPPLED for FI#2. </p>
<p>Here is how I recovered from this unfair and unethical action of Intuit. I had a BACKUP of key Quicken Files. I restored 5 files (Q3.DIR, files ending with QEL,HCX,QSD,QDF). I download QFX files onto my computer hard drive as before. I instructed my firewall to block Quicken (QW.exe) from connecting to any address on the internet. Then I open Quicken and import the QFX file for FI#1 into the Quicken account for FI#1. Another way to block Quicken from connecting thru the internet is to disconnect the internet cable or the phone cable from your computer before opening Quicken for importing the QFX file.</p>
<p>Alas, I suspect the majority does not have a BACKUP. Then perhaps an uninstall and reinstall of Quicken might work. This is speculation on my part as I have not tried it.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30751</link>
		<author>Jason</author>
		<pubDate>Thu, 19 Jun 2008 09:25:57 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30751</guid>
					<description>First, it wouldn't let me choose to associate the download with an existing account.  I had to edit the account and choose Download transactions: not enabled.

I was also getting the error:

Data has been downloaded for an account () that is not defined in your Quicken data file. Contact Quicken customer service [OL-362].

so I had to add the substitution:

&#124; sed -e 's/sharebuilder.com/etrade.com/' 

to get it to work.</description>
		<content:encoded><![CDATA[<p>First, it wouldn&#8217;t let me choose to associate the download with an existing account.  I had to edit the account and choose Download transactions: not enabled.</p>
<p>I was also getting the error:</p>
<p>Data has been downloaded for an account () that is not defined in your Quicken data file. Contact Quicken customer service [OL-362].</p>
<p>so I had to add the substitution:</p>
<p>| sed -e &#8217;s/sharebuilder.com/etrade.com/&#8217; </p>
<p>to get it to work.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30768</link>
		<author>Scott</author>
		<pubDate>Wed, 02 Jul 2008 00:53:47 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30768</guid>
					<description>Quicken is retarded for doing this. Your hint worked great for Quicken 2006 on a MacBook for an E*Trade checking account. Thanks!!!</description>
		<content:encoded><![CDATA[<p>Quicken is retarded for doing this. Your hint worked great for Quicken 2006 on a MacBook for an E*Trade checking account. Thanks!!!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Deborah</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30784</link>
		<author>Deborah</author>
		<pubDate>Fri, 11 Jul 2008 16:34:56 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-30784</guid>
					<description>SOLVED!

However, I was getting that error about "Unable to verify financial institution" and noticed also that my instition did not appear under Online-&#62;Financial Institutions. This was even though I verified that my bank (EZCardInfo) does support Quicken for Mac by looking hear:

http://web.intuit.com/personal/quicken/details.cfm?type=basic&#38;fidetails=EZCardInfo%2Ecom&#38;qwid=qw1700&#38;qmid=qm1600&#38;qbid=qb1800&#38;qbmid=qbm1700

I called Quicken Customer Service (excellent...they have you fill in a web page and call you back within 30 minutes; call 1-800-811-8766) and they had me update to the latest "patch" using Quicken's Check for Updates.  Once I did this, installed the update, restarted Quicken, and clicked "Update List" twice (??) under Online-&#62;Financial Institutions, the insitution (EZCardInfo) magically appeared.  So try this. And don't forget to Update the list twice...I don't know why this was necessary. Maybe it was just human error (mine).

I was skeptical that the list for R6 would be different for R3, but it is. Apparently the financial institution list is different for different updates.  I'm now at Quicken for Mac 2006 R6 and can use EZCardInfo just fine with Quicken for Mac 2006 (though they support Web Connect only, not Direct Connect...but at least now I can import a QFX file).

It was nice to have a positive customer service experience for once!</description>
		<content:encoded><![CDATA[<p>SOLVED!</p>
<p>However, I was getting that error about &#8220;Unable to verify financial institution&#8221; and noticed also that my instition did not appear under Online-&gt;Financial Institutions. This was even though I verified that my bank (EZCardInfo) does support Quicken for Mac by looking hear:</p>
<p><a href="http://web.intuit.com/personal/quicken/details.cfm?type=basic&amp;fidetails=EZCardInfo%2Ecom&amp;qwid=qw1700&amp;qmid=qm1600&amp;qbid=qb1800&amp;qbmid=qbm1700" rel="nofollow">http://web.intuit.com/personal/quicken/details.cfm?type=basic&amp;fidetails=EZCardInfo%2Ecom&amp;qwid=qw1700&amp;qmid=qm1600&amp;qbid=qb1800&amp;qbmid=qbm1700</a></p>
<p>I called Quicken Customer Service (excellent&#8230;they have you fill in a web page and call you back within 30 minutes; call 1-800-811-8766) and they had me update to the latest &#8220;patch&#8221; using Quicken&#8217;s Check for Updates.  Once I did this, installed the update, restarted Quicken, and clicked &#8220;Update List&#8221; twice (??) under Online-&gt;Financial Institutions, the insitution (EZCardInfo) magically appeared.  So try this. And don&#8217;t forget to Update the list twice&#8230;I don&#8217;t know why this was necessary. Maybe it was just human error (mine).</p>
<p>I was skeptical that the list for R6 would be different for R3, but it is. Apparently the financial institution list is different for different updates.  I&#8217;m now at Quicken for Mac 2006 R6 and can use EZCardInfo just fine with Quicken for Mac 2006 (though they support Web Connect only, not Direct Connect&#8230;but at least now I can import a QFX file).</p>
<p>It was nice to have a positive customer service experience for once!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: va get credit home loan bad</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-31086</link>
		<author>va get credit home loan bad</author>
		<pubDate>Mon, 15 Sep 2008 15:43:16 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-31086</guid>
					<description>to va home credit bad loan &lt;a href="http://sebastian71.vidilife.com" rel="nofollow"&gt;how loan home credit va bad&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>to va home credit bad loan <a href="http://sebastian71.vidilife.com" rel="nofollow">how loan home credit va bad</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Piet Martens</title>
		<link>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-31106</link>
		<author>Piet Martens</author>
		<pubDate>Wed, 01 Oct 2008 19:34:37 +0000</pubDate>
		<guid>http://www.digital501.com/2006022124/hack-quicken-osx-qfx/#comment-31106</guid>
					<description>First rate research, and crystal clear explanation. Thanks so much! I've been baffled by not being able to import .ofx files from the NASA credit union for months, and just went back to importing.qif files.  But today I decided to search online.

What an idiotic practice by Intuit.  I am going to look for alternatives for Quicken and Turbotax.

Thanks again!

Piet</description>
		<content:encoded><![CDATA[<p>First rate research, and crystal clear explanation. Thanks so much! I&#8217;ve been baffled by not being able to import .ofx files from the NASA credit union for months, and just went back to importing.qif files.  But today I decided to search online.</p>
<p>What an idiotic practice by Intuit.  I am going to look for alternatives for Quicken and Turbotax.</p>
<p>Thanks again!</p>
<p>Piet</p>
]]></content:encoded>
				</item>
</channel>
</rss>
