Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

02-19-2014 , 07:40 PM
Quote:
Originally Posted by ChazDazzle
Looks like there's an issue with doing sessions on sqlite. Try installing mysql or postgres and it should work.
I installed and configured postgresql and test imported a few existing HH files.

I then set up to bulk import all 2014 hands.
First thing I noticed is that the hands were parsed in an arbitrary order -- not by date/time nor alphabetically.

Next problem is that after a time, the process failed.
I removed the "offending" file, recreated the tables, and re-imported.

After I had collected 10 such "failed" files, I noticed that the failures all happened when around 2200 files had been imported +/- a couple of hundred.

I then did a test import on the failed files, and they all imported, but the next one failed.

The error messages seemed strange.

Here is a fairly typical set of messages on failure:
2014-02-19 14:12:18,173 - parser INFO Read 42 hands (0 failed) in 0.203 seconds
2014-02-19 14:12:20,484 - importer ERROR Importer._import_hh_file: '<type 'file'>' Fatal error: ''Traceback (most recent call last): File "Importer.pyc", line 469, in _import_hh_file File "Hand.pyc", line 360, in updateSessionsCache File "Database.pyc", line 2704, in storeSessionsCacheKeyError: \'sessionStart\'''
2014-02-19 14:12:20,484 - importer ERROR 'u"PokerStars Hand #111883204506: 5 Card Draw Limit ($0.25/$0.50 USD) - 2014/02/15 13:57:24 PT [2014/02/15 16:57:24 ET]\nTable 'Kurhah IV' 6-max Seat #6 is the button\nSeat 2: Bilbobeutl. ($9.87 in chips)"'

I then set cacheSessions="False" and imported all 15K hands in short order.

Is there a place I can upload my log files?

Regards,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-19-2014 , 09:09 PM
Ok, this program is working alright on my laptop. I just installed it on my other computer and the HUD isn't showing up in game even though the hands are being imported properly, the graphs are working etc.

Anyone know what the deal is? Thank you.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-19-2014 , 09:33 PM
Quote:
Originally Posted by TheDruid
I installed and configured postgresql and test imported a few existing HH files.

I then set up to bulk import all 2014 hands.
First thing I noticed is that the hands were parsed in an arbitrary order -- not by date/time nor alphabetically.

Next problem is that after a time, the process failed.
I removed the "offending" file, recreated the tables, and re-imported.

After I had collected 10 such "failed" files, I noticed that the failures all happened when around 2200 files had been imported +/- a couple of hundred.

I then did a test import on the failed files, and they all imported, but the next one failed.

The error messages seemed strange.

Here is a fairly typical set of messages on failure:
2014-02-19 14:12:18,173 - parser INFO Read 42 hands (0 failed) in 0.203 seconds
2014-02-19 14:12:20,484 - importer ERROR Importer._import_hh_file: '<type 'file'>' Fatal error: ''Traceback (most recent call last): File "Importer.pyc", line 469, in _import_hh_file File "Hand.pyc", line 360, in updateSessionsCache File "Database.pyc", line 2704, in storeSessionsCacheKeyError: \'sessionStart\'''
2014-02-19 14:12:20,484 - importer ERROR 'u"PokerStars Hand #111883204506: 5 Card Draw Limit ($0.25/$0.50 USD) - 2014/02/15 13:57:24 PT [2014/02/15 16:57:24 ET]\nTable 'Kurhah IV' 6-max Seat #6 is the button\nSeat 2: Bilbobeutl. ($9.87 in chips)"'

I then set cacheSessions="False" and imported all 15K hands in short order.

Is there a place I can upload my log files?

Regards,
--D
You can email them to me at support@pokeit.co

Mind trying MySQL now? :-)
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-20-2014 , 12:47 AM
Quote:
Originally Posted by ChazDazzle
You can email them to me at support@pokeit.co

Mind trying MySQL now? :-)
MySQL works -- which is unfortunate, as it is my least favourite of the 3 supported.

Oddly, the bulk import still imports the files in what appears to be a totally random order.

Here is what I mean:
Code:
+----+--------+---------+---------------------+---------------------+
| id | weekId | monthId | sessionStart        | sessionEnd          |
+----+--------+---------+---------------------+---------------------+
|  1 |      1 |       1 | 2014-01-16 23:20:34 | 2014-01-17 00:33:40 |
|  2 |      2 |       2 | 2014-02-04 00:53:26 | 2014-02-04 01:04:28 |
|  3 |      1 |       1 | 2014-01-15 03:38:07 | 2014-01-15 04:27:26 |
|  4 |      2 |       2 | 2014-02-07 03:18:21 | 2014-02-07 06:08:55 |
|  5 |      3 |       1 | 2014-01-22 02:52:25 | 2014-01-22 04:00:53 |
|  6 |      3 |       1 | 2014-01-21 03:20:43 | 2014-01-21 04:21:38 |
|  7 |      3 |       1 | 2014-01-24 03:14:17 | 2014-01-24 04:41:48 |
|  8 |      4 |       2 | 2014-02-10 16:01:47 | 2014-02-10 17:12:04 |
| 10 |      2 |       2 | 2014-02-06 23:26:30 | 2014-02-07 01:04:24 |
| 12 |      4 |       2 | 2014-02-13 21:31:46 | 2014-02-13 21:45:54 |
| 13 |      3 |       1 | 2014-01-23 00:22:19 | 2014-01-23 00:57:06 |
| 14 |      4 |       2 | 2014-02-14 03:45:34 | 2014-02-14 04:43:15 |
Is there any performance or capacity considerations when choosing a db platform?

My preference would be postgres since I have tools for that, but I suppose there are tools for the others too.

So which one is best?

--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-20-2014 , 01:42 AM
Quote:
Originally Posted by TheDruid
MySQL works -- which is unfortunate, as it is my least favourite of the 3 supported.
We'll get this fixed for the next build. I use MySQL so sometimes i'm lazy and don't test the non-production code on all the db versions.

Quote:
Originally Posted by TheDruid
Oddly, the bulk import still imports the files in what appears to be a totally random order.

Here is what I mean:
Code:
+----+--------+---------+---------------------+---------------------+
| id | weekId | monthId | sessionStart        | sessionEnd          |
+----+--------+---------+---------------------+---------------------+
|  1 |      1 |       1 | 2014-01-16 23:20:34 | 2014-01-17 00:33:40 |
|  2 |      2 |       2 | 2014-02-04 00:53:26 | 2014-02-04 01:04:28 |
|  3 |      1 |       1 | 2014-01-15 03:38:07 | 2014-01-15 04:27:26 |
|  4 |      2 |       2 | 2014-02-07 03:18:21 | 2014-02-07 06:08:55 |
|  5 |      3 |       1 | 2014-01-22 02:52:25 | 2014-01-22 04:00:53 |
|  6 |      3 |       1 | 2014-01-21 03:20:43 | 2014-01-21 04:21:38 |
|  7 |      3 |       1 | 2014-01-24 03:14:17 | 2014-01-24 04:41:48 |
|  8 |      4 |       2 | 2014-02-10 16:01:47 | 2014-02-10 17:12:04 |
| 10 |      2 |       2 | 2014-02-06 23:26:30 | 2014-02-07 01:04:24 |
| 12 |      4 |       2 | 2014-02-13 21:31:46 | 2014-02-13 21:45:54 |
| 13 |      3 |       1 | 2014-01-23 00:22:19 | 2014-01-23 00:57:06 |
| 14 |      4 |       2 | 2014-02-14 03:45:34 | 2014-02-14 04:43:15 |
There's absolutely no reason it needs to be in order in the database. Just sort it by sessionStart in your query if you need it to be in order.

Quote:
Originally Posted by TheDruid
Is there any performance or capacity considerations when choosing a db platform?

My preference would be postgres since I have tools for that, but I suppose there are tools for the others too.

So which one is best?

--D
sqlite will be fastest, but you'll have to use mysql or postgres if you have a significant number of hands.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-20-2014 , 01:20 PM
Hello,
please.. anyone can helpme about the tournament graphs don't work?

All works fine, but tournament graphs don't work.. and the tournament stats show all the information correct..

my version is 040.5.
thanks in advance..
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-21-2014 , 10:04 AM
Is there a way to change where the HUD automatically pops up? In mixed games, whenever the game changes, it keeps going back to the default positions where I don't want it.

Also is there a way to disable the previous hand popping up (especially for stud)
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-21-2014 , 04:36 PM
Does this work for Snap Poker? (888poker version of rush/zoom).
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-22-2014 , 10:52 AM
Hi, please help me. Some players HUD displayed differently. What's the problem?



I use ubuntu + wine + fpdb 040.5
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-24-2014 , 06:29 AM
Hi,
I find that when using FPDB at 888 (pacific poker) the HUD only works for some of the players at the table. e.g. at a 6 player table it works for 2 - 4 people, but never for everyone. Does anyone know if there is a fix for this? Any advice would be much appreciated. Using Windows XP.
Thanks,
Joe.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-26-2014 , 11:38 AM
having problems with the HUD on Seals with Clubs

I find the correct folders and autimport yet the HUD doesnt show on a HU table.

Im using version 4.05. Anyone have an idea on what im doing wrong here? HUD window doesnt pop up either.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-27-2014 , 09:49 PM
Having same problem as post above.

1st time user, everything seems fine wrt aut-import but no hud. 6max though.

Do I need to do something special to get the hud to show up?

Thx.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2014 , 04:05 AM
^Try running the install_fpdb.bat file in the fpdb directory.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2014 , 06:38 PM
How is rake calculated for the various game types & sites?

According to this page:
http://www.pokerstars.com/vip/earn/

Quote:
In PokerStars cash games, you earn points based on the ‘rake’ taken from each hand and your contribution to the pot.

The total VPPs awarded to the table are based on the VPP rate multiplied by the total rake taken. The VPP rate varies depending on the number of seats, stakes, and currency of the table (see below for more information). The total VPPs are then divided among the players who contributed money to the pot, based on the amount contributed. Fractional VPPs are awarded in hundredths.
From that I deduced that the number of VPPs I earned in a session should have some correlation with the sum of the "rake contributed" values for each hand in a session. It doesn't seem even close.

Is that due to rounding errors, since the rake portions are even integers representing whole cents?

Or am I missing something else?

Regards,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2014 , 06:52 PM
Quote:
Originally Posted by TheDruid
How is rake calculated for the various game types & sites?

According to this page:
http://www.pokerstars.com/vip/earn/



From that I deduced that the number of VPPs I earned in a session should have some correlation with the sum of the "rake contributed" values for each hand in a session. It doesn't seem even close.

Is that due to rounding errors, since the rake portions are even integers representing whole cents?

Or am I missing something else?

Regards,
--D
While it's not linked up to anything in the application, there's a column in the database called "rakeWeighted" which is proportional to the VPPs/FPPs awarded.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-01-2014 , 11:23 PM
Quote:
Originally Posted by Leiferman
^Try running the install_fpdb.bat file in the fpdb directory.
I'm having the same problems were my hand history is being imported, but I'm not seeing my HUD. I'm running Windows on my Mac using a virtual machine, and whenever I try your suggestion it returns in error window that says Windows cannot find it ‘fpdb.exe’. Make sure you typed the name correctly, and then try again.

Any suggestions?

Thanks in advance.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-03-2014 , 12:16 PM
Is there any way to make the HUD compatible with Stud Indicator running at the same time?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-03-2014 , 05:18 PM
Quote:
Originally Posted by ChazDazzle
While it's not linked up to anything in the application, there's a column in the database called "rakeWeighted" which is proportional to the VPPs/FPPs awarded.
Yep, I found that.
There is also a rakecontributed.

Neither correlate well with the VPPs awarded as reported by PokerStars playing history audit I requested.

I suspect that it is just rounding errors, as the best that can be done is an even cent.

Cheers,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-05-2014 , 12:14 PM
Anybody got this to work on LuckyAcePoker ?

I got pokertracker working by choosing 888 poker (it's same network) but FPDB won't start the HUD. The window saying it's on appers, but no stats.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-06-2014 , 01:43 AM
I see it has a Download for Apple, but I cant seem to get the thing to work. Sound familiar?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-11-2014 , 11:24 PM
Hi, Im gonna start playing mixed games, and it looks that FPDB is the best solution for me.
I was just wondering if there are tournament HUD filters available in this software?

Thanks
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-12-2014 , 02:07 PM
Quote:
Originally Posted by nherrego
Hi, Im gonna start playing mixed games, and it looks that FPDB is the best solution for me.
I was just wondering if there are tournament HUD filters available in this software?

Thanks
Each game type has a default HUD layout, with its own set of stats.
If desired, you can split the default HUD into tournament and ring varieties, but it is done manually.

I have just done it for draw games and Omaha -- Hold'em is done already.
You can change the stats sets as well, but this involves editing the config file.
It is not trivial, but not too difficult if you have a decent text editor.

There are several popups available, and although I presume you can create your own, I have not yet done it.

Best of luck,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-15-2014 , 09:01 PM
HUD not showing.

I've started auto import, got the "HUD Main Window" showing, but nothing is displayed.

Currently playing Zoom on Pokerstars.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-15-2014 , 09:19 PM
Quote:
Originally Posted by fbrancoff
Is HUD for zoom poker working for windows? How to put it working? thanks!
I tried to multi-quote Chaz' reply, but id didn't work.

In any case the reply was:
Quote:
Originally Posted by ChazDazzle
Nope. There's some secret sauce to this that we don't quite understand.
Cheers,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-22-2014 , 08:14 PM
Hello,
I've been using this software for about a month and it is amazing!
I play SNGs NLHE and when ever I reach over 30k+ hands it seems to reset the count to like 25k, go up to 30k again, reset back to 25k, etc...
Is there some limit I need to set? Thank you.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m