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

04-13-2010 , 02:08 AM
I've been trying to get a windows install of the 3/7/10 release and when I run it I get a windows dialog claiming fpdb has experienced a problem and will be shut down.

I've tried various iterations of the config file, and my recent attempts are without any config file.

I noticed the program named "configuration.exe" and so I ran it and captured the output. Towards the end of the file I receive this message:
"xml.dom.ext needs PyXML to be installed!"

Could this be the source of my problems? I'm running Win XP sp (2 or 3) on an AMD processor with 2 GB ram and hundreds of gigs of disk space available.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 03:10 AM
Where is DerivedStats.py?

Also, I'm having the hardest time positioning hud's. Like i said before, I nine table and it's very difficult manually positioning the hud's. I try using the "save layout for hud" after i manually position all the hud's on my first open table. But when i open my second table the hud are not by the right names (though are in the right spot).


I hope someone can help me...I'm so close to using this !!!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 04:07 AM
Quote:
Originally Posted by arsenal6
Where is DerivedStats.py?

Also, I'm having the hardest time positioning hud's. Like i said before, I nine table and it's very difficult manually positioning the hud's. I try using the "save layout for hud" after i manually position all the hud's on my first open table. But when i open my second table the hud are not by the right names (though are in the right spot).


I hope someone can help me...I'm so close to using this !!!

You havn't got your preferred seat correctly set. In your first HUD you are "mucking up" the HUD settings so they then appear wrong in further HUDs.

I bit of trial and error should get you sorted out.

Just make sure when you edit the preferred seat in the config file you change the correct part of the code which relates to the total number of seats on the table.

Also check you have a consistent seat in the poker software client.

I had the exact same problem and sorted it out. There are some posts from me in this thread from a few weeks ago.

Hope this helps.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 06:04 AM
Quote:
Originally Posted by Banzai
You havn't got your preferred seat correctly set. In your first HUD you are "mucking up" the HUD settings so they then appear wrong in further HUDs.
+1

Also, make sure that your screen name is set accurately in the configuration. It is case-sensitive !!!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 08:54 AM
hi,
I dloaded and installed fpdb v0.12 on win7. I see it sez todo next to the Hand Replayer.

Does this work in any previous releases?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 01:35 PM
Quote:
Originally Posted by DangermaN
I've been trying to get a windows install of the 3/7/10 release and when I run it I get a windows dialog claiming fpdb has experienced a problem and will be shut down.
All working for me on the same hardware.

I get the same error when running configuration.exe, so that is probably not the reason for the failure.

Can you try opening a command prompt, changing directory to the pyfpdb folder and then typing fpdb.exe . What output if anything do you get in the command prompt window? (Mine begins Python 2.5...)

Is there anything in the fpdb log files? normally at c: ... documents and settings ... <username> ... Application Data ... fpdb ... log ... fpdb-errors.txt and fpdb-log.txt (make sure "show hidden files" option is set on in explorer.

As a bit of a long shot, have you tried downloading the package again ?

Last edited by gimick; 04-13-2010 at 01:44 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 01:56 PM
Has anyone done the new update today? There are a lot of changes to HH's names etc. Just wondering, before I do an update, if they are messing up the importing or the HUD. Please post if you've updated and it's working okay still...

Thx
Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 03:10 PM
Quote:
Originally Posted by 1meandog4u
Has anyone done the new update today? There are a lot of changes to HH's names etc. Just wondering, before I do an update, if they are messing up the importing or the HUD. Please post if you've updated and it's working okay still...

Thx
Dog
Just updated Stars and played a few cash hands - nothing obvious seems to be broken on the HUD, and nothing unexpected in the log files.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 03:56 PM
Quote:
Originally Posted by Banzai
You havn't got your preferred seat correctly set. In your first HUD you are "mucking up" the HUD settings so they then appear wrong in further HUDs.

I bit of trial and error should get you sorted out.

Just make sure when you edit the preferred seat in the config file you change the correct part of the code which relates to the total number of seats on the table.

Also check you have a consistent seat in the poker software client.

I had the exact same problem and sorted it out. There are some posts from me in this thread from a few weeks ago.

Hope this helps.
Finally got the hud set up, BUT for some reason seat number 2 (in max 9) is missing hud. Opened numerous tables and seat #2's hud isn't showing... What is possibly wrong here?

ps- seat 2 was missing its hud even before i set up my preferred seat in config.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 04:00 PM
Quote:
Originally Posted by gimick
Here is a patch which may resolve many, but not all issues with the CBet statistic being too low.

Currently CBets are only counted if your bet is the first entry in the Hand History (issue identified by padre_maronno in post #2827).

in DerivedStats.py, the method betStreet is changed as follows:


Code:
    
    def betStreet(self, street, player):
        """Returns true if player bet/raised the street as their first action"""
        betOrRaise = False
        for act in self.hand.actions[street]:

	#	if act[0] == player and act[1] in ('bets', 'raises'):
	#		betOrRaise = True
	#	else:
 	#		break
 
	#  Old code above.
	#  Only recognised the continuation bet if the bet was the first entry in the hand history.
 	#  suggested change below.

            if act[0] == player: 
		if act[1] in ('bets', 'raises'):
                	betOrRaise = True
			break
	        else:
			# player found but did not bet or raise as their first action
			break
	    else:
		# haven't found player's first action yet
		continue

        return betOrRaise
Where do I locate DerivedStats.py? I've looked everywhere.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 04:34 PM
Quote:
Originally Posted by arsenal6
Where do I locate DerivedStats.py? I've looked everywhere.
Sorry, It's not in the .exe package for windows. You would need to install the source code and all the dependencies.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 04:44 PM
Quote:
Originally Posted by arsenal6
Finally got the hud set up, BUT for some reason seat number 2 (in max 9) is missing hud. Opened numerous tables and seat #2's hud isn't showing... What is possibly wrong here?

ps- seat 2 was missing its hud even before i set up my preferred seat in config.
Take a look in the file c: ... documents and settings ... <username> ... Application Data ... fpdb ... hud_config.xml

My 9-max section looks like this:
Code:
            <layout fav_seat="5" height="546" max="9" width="792">
                <location seat="1" x="916" y="7">  </location>
                <location seat="2" x="1136" y="190"> </location>
                <location seat="3" x="1122" y="421"> </location>
                <location seat="4" x="1090" y="548"> </location>
                <location seat="5" x="746" y="578"> </location>
                <location seat="6" x="367" y="548"> </location>
                <location seat="7" x="45" y="422"> </location>
                <location seat="8" x="30" y="192">  </location>
                <location seat="9" x="263" y="5">  </location>
Long shot - check if it is hidden beneath another stat, or in the very top left hand corner?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 04:46 PM
Quote:
Originally Posted by arsenal6
Finally got the hud set up, BUT for some reason seat number 2 (in max 9) is missing hud. Opened numerous tables and seat #2's hud isn't showing... What is possibly wrong here?

ps- seat 2 was missing its hud even before i set up my preferred seat in config.
Nevermind, I figured it out! Still need help fixing cbet though.

Thanks for everything, you guys are awesome!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 05:13 PM
Quote:
Originally Posted by gimick
Sorry, It's not in the .exe package for windows. You would need to install the source code and all the dependencies.
How do i go about doing this? I hope it's not too difficult. I would really like the cbet stat.

Also, flop/4th fold stat isn't working for me neither?

Thanks!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 05:52 PM
x,y = number of pixels left-right and then up-down from upper left corner of window.

higher resolution display=more pixels per inch
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-13-2010 , 10:54 PM
I don't know if it's the updated, or what, but my stats aren't right since i did an update. For example, I played about 30 mins AFTER 7pm local time PDT. After 5pm, the stats have always changed to the new day because of GMT rules.

When I got done, it didn't show them on the 13th, which it should NOT have, so that was okay. But, it didn't show them on the 14th either, which it normally would do.

I ran all kinds of player stats reports and something is wrong. When I'm in the game (I use a 3-day stat for myself) earlier today I left with a $33.95 win/player balance showing on the HUD. When I went back this evening it had dropped to $8. No problem, I assumed it was now counting the date as the 14th and hadn't played. After playing, as mentioned above I broke dead even. But the 3-day report showed $33.95 as before. I did one for just one day, 14th, and it showed nothing. It's somehow messed, it seems, by the update.

And BTW, I even did a bulk import of my HH's for the last session to be sure they were in the database. When I ran a report, it show zero hands for the new day, and I should have had about 100 hands on the new date..

Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-14-2010 , 12:56 AM
Quote:
Originally Posted by edwardr36
Is there an uninstall for fpdb or do I have to do it manually?

PS:It works fine it's just that Im not playing poker anymore so I have no use for it.
If you installed the .exe version, then just deleting the expanded folder is enough to remove fpdb.

Quote:
Originally Posted by arsenal6
I nine table and I would like to change the height and width of the hud display.
As Dog mentioned, the size of the window can't be saved - it will resize itself to be as small as the font, figures, cols and rows allow.

You can resize the wondows manually using shift-click-drag (or alt-click, cnt remember)

Quote:
Originally Posted by arsenal6
Where is DerivedStats.py?

Also, I'm having the hardest time positioning hud's. Like i said before, I nine table and it's very difficult manually positioning the hud's. I try using the "save layout for hud" after i manually position all the hud's on my first open table. But when i open my second table the hud are not by the right names (though are in the right spot).


I hope someone can help me...I'm so close to using this !!!
DerviedStats.py doesn't exist in the .exe version, you'd need to install a source version and all the required dependencies. There is a document on the wiki describing how to do this - its not difficult of you know what you are doing... but isn't everything

Quote:
Originally Posted by Michaelooch
hi,
I dloaded and installed fpdb v0.12 on win7. I see it sez todo next to the Hand Replayer.

Does this work in any previous releases?
No. The hand replayer is a planned feature but still a ways off yet.

Quote:
Originally Posted by gimick
Just updated Stars and played a few cash hands - nothing obvious seems to be broken on the HUD, and nothing unexpected in the log files.
Excellent

Haven't played in a couple of weeks. I magine the hud may not appear in the shallow tables.

Sorrow.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-14-2010 , 02:55 AM
Quote:
Originally Posted by 1meandog4u
I don't know if it's the updated, or what, but my stats aren't right since i did an update.

Dog
I'm narrowing it down to some kind of error in the "player stats" report. The HUD is correct.

Late tonight I played 83 hands of .01/.02 Omaha H/L PL and won $0.95. I immediately did a player's report on just the 14th. It showed $0.85 profit, 10 cents less, and only showed 81 hands. (I did do a bulk import of just those files to make sure all were included) Additionally, I requested from PS's a "Hand History Audit" for just the 14th. It showed 83 hands, 95 cents profit, the same as the hud showed, so the HUD imported fine and matched what PS said.

Easy deduction, the player stats report is not pulling up all the hands that have been stored. I don't think this has anything to do with today's update. I've noticed discrepancies before, albeit small, and kind of ignored them. Just passing it along.

Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-15-2010 , 04:14 AM
Quote:
Originally Posted by gimick
All working for me on the same hardware.

I get the same error when running configuration.exe, so that is probably not the reason for the failure.

Can you try opening a command prompt, changing directory to the pyfpdb folder and then typing fpdb.exe . What output if anything do you get in the command prompt window? (Mine begins Python 2.5...)

Is there anything in the fpdb log files? normally at c: ... documents and settings ... <username> ... Application Data ... fpdb ... log ... fpdb-errors.txt and fpdb-log.txt (make sure "show hidden files" option is set on in explorer.

As a bit of a long shot, have you tried downloading the package again ?
Log files read:
2010-04-12 23:47:22,894 - config INFO Reading configuration file C:\Documents and Settings\User\Application Data\fpdb\HUD_config.xml

When I go to the directory and type:
fpdb
at the command prompt, I see:
Python 2.5...

followed about 5 seconds later by a dialog box which reads:

Free Poker DataBase has encountered a problem and needs to close. We are sorry for the inconvenience.

After closing the dialog box, I'm dropped back to the command prompt in the dos box without any additional comment.

The dialog box wants me to send a memory dump off to microsoft, which I tried but never heard anything from them. Also, it's possible that I could copy the contents of the file sent to MS, but without proper debugging tools, it's pretty tedious crap to read through.

It's worth noting that the entry in the log file is the result of running "Configuration.exe", not the result of running fpdb.exe

I'll try a reinstall and see what happens.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-15-2010 , 04:43 AM
After a complete reinstall, it still gives me the same behavior.

I dug a little deeper into the error dialog and copied down this info, in case it means something to anyone:

AppName: fpdb.exe AppVer: 0.12.0.0 ModName: numpy.core._dotblas.pyd
ModVer: 0.0.0.0 Offset: 00010ca3
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-15-2010 , 07:29 AM
Quote:
Originally Posted by DangermaN
Log files read:
2010-04-12 23:47:22,894 - config INFO Reading configuration file C:\Documents and Settings\User\Application Data\fpdb\HUD_config.xml

When I go to the directory and type:
fpdb
at the command prompt, I see:
Python 2.5...

followed about 5 seconds later by a dialog box which reads:

Free Poker DataBase has encountered a problem and needs to close. We are sorry for the inconvenience.

After closing the dialog box, I'm dropped back to the command prompt in the dos box without any additional comment.

The dialog box wants me to send a memory dump off to microsoft, which I tried but never heard anything from them. Also, it's possible that I could copy the contents of the file sent to MS, but without proper debugging tools, it's pretty tedious crap to read through.

It's worth noting that the entry in the log file is the result of running "Configuration.exe", not the result of running fpdb.exe

I'll try a reinstall and see what happens.
Assuming you are downloading the .exe package that is bad.

The problem was the xml parser crashing, which shouldn't happen if the HUD_config.xml is valid.

My best guess - and its only a guess, is that you have another version of python installed on your system that you aren't aware, and is in your path somewhere.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-16-2010 , 02:25 PM
hello, i have been trying to use freepokerdb for a few days, and i'm having the strangest of the problems. Basically on PokerStars the hud only works with playmoney games, even if i have a real SNG going on and a playmoney game only the latter will have the hud. Any help?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-17-2010 , 12:19 AM
"DerviedStats.py doesn't exist in the .exe version, you'd need to install a source version and all the required dependencies. There is a document on the wiki describing how to do this - its not difficult of you know what you are doing... but isn't everything"

Can't find it?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-17-2010 , 04:27 AM
Quote:
Originally Posted by arsenal6

Can't find it?
The documentation website is offline for maintenance, will post a link later when it is working
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-17-2010 , 01:34 PM
Quote:
Originally Posted by gimick
The documentation website is offline for maintenance, will post a link later when it is working
Ty sir!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m