Tag Archives: Bug

Fifth Third and Mint.com Broken…(Solved!…for me at least)

logo_noreflect

The last few weeks many Mint.com users have had an issue where they could not sync with Fifth Third Bank.

I posted on Mint.com’s Get Satisfaction page and it appears that there’s quite a few people that have this issue as well. Once I figured out a solution I posted it there as well.

Well after a few emails between Mint.com and Fifth Third, there has been a solution that works for me.

If you visit the Service Center at the top of the web page after you have logged in and can view your accounts, you will see four groups of options. Please select the “Change Security Questions” option within the “Security Center” section. Updating your security questions will restore service to Mint.com.

I received this from Fifth Third after I had given them 5 days to fix the issue or I would leave the bank.

I think the issue was that Fifth Third had updated their security and not notified any one that they had done so. So if you hadn’t setup the new security questions for your account then when Mint.com attempted to authenticate and pull your data the connection would fail.

Bing.com blunder: Page 21 goes blank (FireFox)

Bing.com blanks out at page 21-22 of search results in FireFox.

Take a simple search in bing.com

http://www.bing.com/search?q=ford

This will give you page saying there are 160,000,000 results and you’re being shown 1-20 of them. That’s all fine and dandy but let’s say I want to just flip through the pages a little and see what’s new with Ford.

When you click on the pagination below the URL’s that your going to look something like this…

Page 2: http://www.bing.com/search?q=ford&first=6&FORM=PERE

Page 3: http://www.bing.com/search?q=ford&first=16&FORM=PERE1

Page 4: http://www.bing.com/search?q=ford&first=26&FORM=PERE2

Page 5: http://www.bing.com/search?q=ford&first=36&FORM=PERE3

You’ll notice a couple things changing in these urls.  The first should be the “first” GET variable in the URL which appears to be some kind of page offset for the results.

The next is that FORM=PERE business which I’m not sure exactly what it does and it didn’t seem to matter if I removed it from the URL anyway.

The key thing I found was that if you click through the pages until you get to around page 21 or 22 the screen goes completely blank and the magic variable value is changing “?first” to a value that’s greater than or equal to 200.  This seems to only be an issue in Firefox as far as I can tell.

I checked the headers with this and there doesn’t seem to be any significant differences.

$ curl -I http://www.bing.com/search?q=ford&first=16&FORM=PERE4

$ curl -I http://www.bing.com/search?q=ford&first=206&FORM=PERE4

Comment if you have any ideas?