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

11-23-2008 , 10:15 AM
If anyone wants to run this on Mac OS X 10.5.5, Ihave following hints:

* Upgrade to developer tools 3.1.1 from http://connect.apple.com
* Upgrade X11 from http://xquartz.macosforge.org/trac/wiki
* Use macports to build all dependencies.

For general instructions, use the guide on the wiki at http://fpdb.wiki.****************/Install+in+MacOSX


Is the HUD supposed to work on Mac OS X? When I start the HUD i get the little window, but I see no stats anywhere.

Where can I find more information about HUD_config.xml?

Thank you for your great work.

Maurice
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 12:12 PM
Quote:
Originally Posted by Maurice_G
If anyone wants to run this on Mac OS X 10.5.5, Ihave following hints:

* Upgrade to developer tools 3.1.1 from http://connect.apple.com
* Upgrade X11 from http://xquartz.macosforge.org/trac/wiki
* Use macports to build all dependencies.

For general instructions, use the guide on the wiki at http://fpdb.wiki.****************/Install+in+MacOSX


Is the HUD supposed to work on Mac OS X? When I start the HUD i get the little window, but I see no stats anywhere.

Where can I find more information about HUD_config.xml?

Thank you for your great work.

Maurice
None of the developers has a Mac, so we are not really trying to get it too work on OSX or testing it there. Since several Mac users are getting the fpdb window and the HUD main window to come up, there is no reason that the rest of the HUD can't be made to work. It would be good if someone with a Mac who wants to use fpdb would step forward and the be Mac guy.

OK. Probably the reason that you are seeing no stats is that the poker client windows are not being detected in the Tables.py module. There is an easy way to test this.
  1. Open a Stars or FTP client poker table window. You don't have to sit at it.
  2. Open Tables.py in your editor and find the line that looks like this:
    Code:
    print discover_table_by_name(c, "Howard Lederer")
    about 8 lines from the bottom. It probably won't say "Howard Lederer" in your version.
  3. Change "How..." to whatever your table is named, e. g., "Beatlejuice IV". Don't forget to save.
  4. Run Tables.py. If you get a little report about the location and size of the table, then the table was detected OK. You will probably get some other info after the report.
If this didn't work then the job is to find where Tables.py blew up and fix it.

There is no real info written on the config file--I add or subtract something to that file every couple of weeks, so I have not been motivated to document it yet. You can run Configuration.py to get a little report on your HUD_config.xml file. That report will give you some clues as to what is in there and how to use it.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 12:55 PM
I have no python experience, but by browsing tables.py, it is obvious why the mac version displays nothing:
(line 241-244 tables.py)
def discover_mac(c):
""" Poker client table window finder for Macintosh."""
tables = {}
return tables

Just return an empty list.

I'll google around a little bit and see if i can come up with something which might work.

M
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 03:40 PM
Quote:
Originally Posted by Maurice_G
I have no python experience, but by browsing tables.py, it is obvious why the mac version displays nothing:
(line 241-244 tables.py)
def discover_mac(c):
""" Poker client table window finder for Macintosh."""
tables = {}
return tables

Just return an empty list.

I'll google around a little bit and see if i can come up with something which might work.

M
Two things about that.
  1. fpdb doesn't actually use the discover_xxxx() functions, it uses the discover_xxx_by_name() functions.
  2. I think that when python looks at os.name to determine the OS, it actually gets 'posix' on OSX. If that is correct, then it is running down the discover_posix_by_name() function path. You can test that by running python from the console and checking what os.name returns.
    Code:
    $ python
    Python 2.5.1 (r251:54863, Jun 15 2008, 18:24:51) 
    [GCC 4.3.0 20080428 (Red Hat 4.3.0-8)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import os
    >>> os.name
    'posix'
    >>>
    The discover_posix_by_name() function uses the xwininfo program to get the info for poker client table windows. I suspect that xwininfo works on OSX when you have Xwindows installed, but that it doesn't find native OSX windows, only the X ones.
If I am correct about all that(which is not certain), you would need to write some code to detect when running on OSX and then some OSX-specific code to find the windows.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 03:50 PM
You are correct:
Code:
Python 2.5.2 (r252:60911, Nov 17 2008, 23:26:04) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.name
'posix'
And indeed xwininfo doesn't return native windows.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 08:32 PM
Hi all,

I've been following this thread since it came up. I finally bit the bullet today and decided to download and install fpdb. I'm using Windows XP right now.

The install was fairly straightforward. I'm not a techie, but I managed to install fairly easy.

The problem I'm encountering is that I'm not sure if anything is working. I don't know if stats are available to be seen in the fpdb window or what. I have tried the auto-import with hud and the little window pops up, but no hud appears on any of my windows (playing on stars currently).

I realize I'm being very general here and asking noobish questions, but I'd like to be able to help as a tester for you folks.

Thanks in advance for your help and congratulations on the great start of a worthwhile project!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 09:10 PM
Hey CPFB, for starters what are the contents of your fpdb-error-log.txt and HUD-error.txt files?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 10:56 PM
fpdb-error-log.txt:

Code:
C:\Program Files\FPDB\pyfpdb\fpdb.py:242: DeprecationWarning: use gtk.UIManager
  self.item_factory = gtk.ItemFactory(gtk.MenuBar, "<main>", accel_group)
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiGraphViewer.py", line 62, in showClicked
    self.fig = Figure(figsize=(5,4), dpi=100)
NameError: global name 'Figure' is not defined
HUD-error.txt:
Code:
HUD_main starting
Using db name = fpdb
Exception exceptions.KeyError: KeyError(4056,) in <module 'threading' from 'C:\Python25\lib\threading.pyc'> ignored
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 11:21 PM
Code:
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiGraphViewer.py", line 62, in showClicked
    self.fig = Figure(figsize=(5,4), dpi=100)
NameError: global name 'Figure' is not defined
This means you dont have the graphing libraries installed - its not part of the default installer yet, so no big deal.

Code:
C:\Program Files\FPDB\pyfpdb\fpdb.py:242: DeprecationWarning: use gtk.UIManager
  self.item_factory = gtk.ItemFactory(gtk.MenuBar, "<main>", accel_group)
Traceback (most recent call last):
  File "C:\Program Files\FPDB\pyfpdb\GuiBulkImport.py", line 67, in load_clicked
    self.importer.runImport()
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 131, in runImport
    self.import_file_dict(file)
  File "C:\Program Files\FPDB\pyfpdb\fpdb_import.py", line 173, in import_file_dict
    firstline = self.lines[0]
IndexError: list index out of range
Hmm. I've seen this with ekdikeo several times - it shouldn't happen. It means that it has opened the hh file successfully, but in attempting to read the fist line it fails.

I don't know the root cause of this yet, i suspect a file flushing race but haven't been able to confirm yet.

Can you try editing the fpdb_import.py file - around line 180 is the line

firstline = self.lines[0]

Can you change that to the following and let me know how you go?

Code:
                try: # sometimes we seem to be getting an empty self.lines, in which case, we just want to return.
                        firstline = self.lines[0]
                except:
#                       print "import_fpdb_file", file, site, self.lines, "\n"
                        return
Thanks

Sorrow.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-23-2008 , 11:51 PM
Quote:
Originally Posted by Maurice_G
And indeed xwininfo doesn't return native windows.
This has always been the issue with mac support - we need a tool or api that allows us to query the title (and details) of open windows. Find that and a mac hud shouldn't be too far away.

One though came to me reading the thread today - there used to be a way to fire up a mac app from within the X environment (open application.app ?) if done from a shell in the X windows environment, that might be enough for xwininfo to find it.

I doubt it... but its worth a shot.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 12:36 AM
Thanks for the help sorrow. My hands started importing right away with the fix you pasted in the thread. Woooohoooo!

Now for a silly/simple question. How do you move the HUD windows around, so that they'll fit in resized windows. I usually play 4 tables and use stars' tile feature. Unfortunately, my HUD doesn't line up at this point. I've tried the right click thing, but that didn't seem to work. Maybe if someone could get me step by step directions for configuring the hud, I'd be able to work it out on my own.

I don't see any detailed instructions on fpdb's sourceforge site for these kinds of tasks. Maybe that will be the way that I can contribute to the project. I don't really have the coding skills to keep up with you guys, but I can help dummies out (assuming this dummy "gets it.").

Thanks guys!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 12:49 AM
Quote:
Originally Posted by CPFB
Thanks for the help sorrow. My hands started importing right away with the fix you pasted in the thread. Woooohoooo!
Excellent - it bugs me that this is an issue, but at least we have a workaround.
Quote:
Originally Posted by CPFB
Now for a silly/simple question. How do you move the HUD windows around, so that they'll fit in resized windows.
The current/alpha10 version allows you to left-click drag the hud windows around, but i'm pretty sure that didn't make the Alpha9 release.

Left double-clicking the windows should bring up the window decorations so you can move them - i have a feeling there is a bug in the Alpha9 release that prevents the top left hud window from being moved though. (double-click again should make the decorations disappear)

Quote:
Originally Posted by CPFB
I don't see any detailed instructions on fpdb's sourceforge site for these kinds of tasks. Maybe that will be the way that I can contribute to the project. I don't really have the coding skills to keep up with you guys, but I can help dummies out (assuming this dummy "gets it.").

Thanks guys!
Some of this info has made its way onto the wiki, so is 'hidden' on the website. Other stuff just exists in the devs heads (why can't people read our thoughts...?). Our original webmaster has taken ill - we wish him well. His illness has left a bit of a hole in updating our public documentation, and any contributions are welcome.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 12:59 AM
Quote:
Originally Posted by sorrow
Excellent - it bugs me that this is an issue, but at least we have a workaround.
Is this the reason that the import speeds are relatively slow for larger files? (I think I was at about 25 secs for 130 hands in one file. That's through mass import.)

Quote:
Originally Posted by sorrow
The current/alpha10 version allows you to left-click drag the hud windows around, but i'm pretty sure that didn't make the Alpha9 release.

Left double-clicking the windows should bring up the window decorations so you can move them - i have a feeling there is a bug in the Alpha9 release that prevents the top left hud window from being moved though. (double-click again should make the decorations disappear)
Current (publicly available) version is alpha9? or alpha10? I'll experiment around with this tomorrow and report back my findings.

Quote:
Originally Posted by sorrow
Some of this info has made its way onto the wiki, so is 'hidden' on the website. Other stuff just exists in the devs heads (why can't people read our thoughts...?). Our original webmaster has taken ill - we wish him well. His illness has left a bit of a hole in updating our public documentation, and any contributions are welcome.

Sorrow
I'm sorry to hear that steffen is ill. Here's hoping that he recovers very quickly.

I'll do my best to help with documentation for the project. I love the open source nature of this project and the spirit of collaboration that comes with it.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 01:08 AM
also, is there a file where the default values for things like locations for where fpdb looks for hand history files?

I just tried the double click thing and it turned the hud windows into "microsoft windows" windows, but I couldn't do anything with them. Maybe I'm overlooking something.

I should be sleeping, but instead, I'm trying to get this to work better. Maybe tomorrow. Again, thanks for all the help.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 01:16 AM
Quote:
Originally Posted by CPFB
Is this the reason that the import speeds are relatively slow for larger files? (I think I was at about 25 secs for 130 hands in one file. That's through mass import.)
There is a problem with tourney/sng imports - i've had some files with < 300 hands take 5 minutes or more. The cash game hands all seem to import at around .1 sec/hand on my machine.

Once i get done with (real life and...) the features i'm working on to assist supporting additional sites i'm going to take a better look at the tourney import stuff.
Quote:
Originally Posted by CPFB
Current (publicly available) version is alpha9? or alpha10? I'll experiment around with this tomorrow and report back my findings.
Alpha9 was the last release. Current git in ekdikeo/eratosthenes/my tree definetly contains the drag and drop code for the hud windows.

Quote:
Originally Posted by CPFB
I'm sorry to hear that steffen is ill. Here's hoping that he recovers very quickly.
Apologies if I mislead, I believe it was Mike (not sure of 2+2 name) that was webmaster, and also the person who created the windows installer.

Steffen is still about, but real life has been taking up his development time.
Quote:
Originally Posted by CPFB
I'll do my best to help with documentation for the project. I love the open source nature of this project and the spirit of collaboration that comes with it.
I look forward to you contributions
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 01:46 AM
Quote:
Originally Posted by CPFB
also, is there a file where the default values for things like locations for where fpdb looks for hand history files?
HUD_config.xml contains those settings. HH_path is what you are looking for.

Quote:
Originally Posted by CPFB
I just tried the double click thing and it turned the hud windows into "microsoft windows" windows, but I couldn't do anything with them. Maybe I'm overlooking something.
Thats the window decorations, with a larger window you can just drag the title bar. With smaller windows - left clicking the icon in the corner should give you the standard xp dropdown with a move option.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 04:09 AM
Not sure if it's made release yet, but yes, on the "moving the window around" thing ..

If you can't move them around by just holding the left mouse (or Mouse 1, if you're using a weird setup, like left handed) and dragging them around, then double click in the windows, and then it should bring up the title bar so you can drag it around. Double click again to remove the title bar. Right click on the "table hud" window in the upper left hand corner, and Save Positions.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 08:57 AM
to all of the FPDB contributors. I hope you get better soon Mike.

I'll try all of your suggestions re: moving HUD windows when I get home from work.

Changing the values in HUD_config.xml fixed the pesky problem of "where are my files located?"

Thanks!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 12:58 PM
He this looks really great, just installed it. I configured the hud_config.xml file with the password asked when installing mysql.

However when I double click the fpdb.py a dos window is openend, the last command I see is: reading hud_config.xml, then it closes and nothing happens.

error logs:

Code:
Traceback (most recent call last):
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 448, in <module>
    me = fpdb()
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 361, in __init__
    self.load_profile()
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 266, in load_profile
    self.db.connect(self.settings['db-backend'], self.settings['db-host'], self.settings['db-databaseName'], self.settings['db-user'], self.settings['db-password'])
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb_db.py", line 43, in connect
    self.db=MySQLdb.connect(host = host, user = user, passwd = password, db = database)
  File "C:\Python25\lib\site-packages\MySQLdb\__init__.py", line 74, in Connect
    return Connection(*args, **kwargs)
  File "C:\Python25\lib\site-packages\MySQLdb\connections.py", line 170, in __init__
    super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
from fpdb-error-log.txt

and:

Code:
HUD_main starting
Using db name = fpdb
Exception exceptions.KeyError: KeyError(-1211377984,) in <module 'threading' from '/usr/lib/python2.5/threading.pyc'> ignored
from HUD-error.txt

I also use HM, not running atm when opening fpdb.py, can that be the problem?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 01:05 PM
Quote:
Originally Posted by sweetysven
He this looks really great, just installed it. I configured the hud_config.xml file with the password asked when installing mysql.

However when I double click the fpdb.py a dos window is openend, the last command I see is: reading hud_config.xml, then it closes and nothing happens.

error logs:

Code:
Traceback (most recent call last):
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 448, in <module>
    me = fpdb()
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 361, in __init__
    self.load_profile()
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb.py", line 266, in load_profile
    self.db.connect(self.settings['db-backend'], self.settings['db-host'], self.settings['db-databaseName'], self.settings['db-user'], self.settings['db-password'])
  File "C:\Documents and Settings\sven\Desktop\openPoker\pyfpdb\fpdb_db.py", line 43, in connect
    self.db=MySQLdb.connect(host = host, user = user, passwd = password, db = database)
  File "C:\Python25\lib\site-packages\MySQLdb\__init__.py", line 74, in Connect
    return Connection(*args, **kwargs)
  File "C:\Python25\lib\site-packages\MySQLdb\connections.py", line 170, in __init__
    super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
from fpdb-error-log.txt

and:

Code:
HUD_main starting
Using db name = fpdb
Exception exceptions.KeyError: KeyError(-1211377984,) in <module 'threading' from '/usr/lib/python2.5/threading.pyc'> ignored
from HUD-error.txt

I also use HM, not running atm when opening fpdb.py, can that be the problem?
This:
Code:
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
usually indicates that fpdb is trying to connect to mysql and mysql is not running. You probably just need to right click on "my computer", select manage, navigate to services and start mysql.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 01:21 PM
Quote:
Originally Posted by Eratosthenes
This:
Code:
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
usually indicates that fpdb is trying to connect to mysql and mysql is not running. You probably just need to right click on "my computer", select manage, navigate to services and start mysql.
That must be it However, I can´t start mysql service:

Code:
Could not start the MySQL service on Local computer.

Error 1067: The process terminated unexpectedly"
I dont have any knowledge on MySQL googled some but did not find a solution (yet) someone who can give me a tip on howto fix this?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-24-2008 , 03:00 PM
Quote:
Originally Posted by sweetysven
I dont have any knowledge on MySQL googled some but did not find a solution (yet) someone who can give me a tip on howto fix this?
This sounds like you are using Windows Vista. You need to uninstall mysql and reinstall following this how to (pdf file). If mysql doesn't show up in your add/remove software thingie, just reinstall following the linked how to and you should be fine.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-25-2008 , 04:00 AM
If you're not using Vista, then look in the MySQL folder for it's config file .. open it up, and change any occurences of "C:\Programmes\" i think it is to "C:\Program Files\"
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-25-2008 , 05:43 PM
hey all.. i'm trying to establish if there's a link between having a significant number of hands in the database, and performance, or see if my problems lie elsewhere ..

I'm pushing just a bit under 40,000 hands in the database, and I'm getting some pretty large slowdowns after a short while of running.

Anyone else have near that, or more hands in?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-26-2008 , 10:48 AM
As I read, the program can import or convert the hands of everleaf, is this true?

if you can, then how can I do?

thanks
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m