Two Plus Two Publishing LLC Two Plus Two Publishing LLC
 

Go Back   Two Plus Two Poker Forums > Internet Poker > Software > Commercial Software

Notices

Commercial Software Discussion of commercial gambling-related / poker software & commercial graphics modifications

Reply
Thread Tools Display Modes
Old 05-25-2008, 01:08 PM   #5056
Carpal \'Tunnel
 
Melchiades's Avatar
 
Join Date: May 2005
Location: Oslo
Posts: 7,056
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by steel108 View Post
A great stat is how often someone folds their steal to a 3 bet
+2
Melchiades is offline   Reply With Quote
Old 05-25-2008, 01:34 PM   #5057
grinder
 
peyote's Avatar
 
Join Date: Jun 2007
Location: Bat Country, Germany
Posts: 451
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Roy, I read here that the mgr (rake) number in the report includes the BBJ contributions at Party. I need this number without it to track the unmentionable

I've written a sql statement to get the BBJ contribution so I can subtract it from the mgr. How can I run it as a custom report/stat and does it look correct?

Code:
SELECT SUM(50.0/numberofplayers)/100.0 AS bbj 
 FROM playerhandscashkeycolumns 
  WHERE player_id = 123456
   AND pokerhand_id IN 
    (SELECT pokerhand_id FROM pokerhands p, tables t
      WHERE p.table_id = t.table_id
       AND t.tablename LIKE 'Jackpot%'
       AND p.handtimestamp >= '2008-05-01 00:00:00'
       AND numberofplayers >= 4)
   AND rakeamount >= 100.0 / numberofplayers
peyote is offline   Reply With Quote
Old 05-25-2008, 02:05 PM   #5058
journeyman
 
Join Date: May 2006
Posts: 264
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by Dread Wings View Post

I did the same thing.
I'm glad I wasn't the only person to do this...
willwonka is offline   Reply With Quote
Old 05-25-2008, 03:25 PM   #5059
veteran
 
stupandaus's Avatar
 
Join Date: Mar 2008
Location: H-Town
Posts: 3,323
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Make sure you installed the full install and also make sure you have .net 2.0 installed properly.
I initially installed .net 3.5 before realizing .net 2.0 was required. Is that an issue? I uninstalled .net 3.5 and downloaded .net 2.0 to install it, but during installation I get an error message saying this installation of .net is not compatible with a previous version. Please help!
stupandaus is offline   Reply With Quote
Old 05-25-2008, 03:41 PM   #5060
Pooh-Bah
 
Join Date: Jul 2006
Location: aggro donk + station
Posts: 3,518
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by rvg72 View Post
If you go to Control Panel - Admin - Services do you see postgresql there? If so right click and hit start. If not then reinstall it and when you get to the part of the install that has a check box for "initialize cluster" uncheck that. You should then be able to reattach to the DB (hopefully)

Roy
Roy,

I did this. This prompt followed after completion...

"the postgreSQL database server 8.3 service on Local Computer started and then stopped Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service."

i then proceeded to do what you told me before, see if i can access the server from pgAdmin III, but still no luck.

I am waiting on your word to reinstall...

http://wwwmaster.postgresql.org/down...ql-8.3.0-1.zip

Edit:

i downloaded this version, and installed it. but no luck, and i never got a "cluster" notice...is this the wrong version?

thanks

Last edited by effang; 05-25-2008 at 04:11 PM.
effang is offline   Reply With Quote
Old 05-25-2008, 04:41 PM   #5061
_Pooh_Bah_
 
Join Date: Feb 2005
Location: UK
Posts: 8,484
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
i downloaded this version, and installed it. but no luck, and i never got a "cluster" notice...is this the wrong version?
you need whatever version you were running prior to the crash.

I'm presuming you didn't do a postgresql backup (dump) recently? that would make things easy.
_dave_ is offline   Reply With Quote
Old 05-25-2008, 04:48 PM   #5062
grinder
 
FrogMouth's Avatar
 
Join Date: Sep 2004
Location: Parts Unknown
Posts: 577
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

I have been checking my stats for the last 5 months (120k hands) and it takes forever to refresh the stats. It easliy takes 5 minutes every time I make a change or refresh the filters. I just vacumed the DB and that was no help, and my comp is pretty decent 1.66 Intel Duo & 1.5gb ram. Is there something I'm doing wrong? Is there anything I can do to speed it up?

Thanks for a great product BTW!
FrogMouth is offline   Reply With Quote
Old 05-25-2008, 05:00 PM   #5063
Pooh-Bah
 
Join Date: Jul 2006
Location: aggro donk + station
Posts: 3,518
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by _dave_ View Post
you need whatever version you were running prior to the crash.

I'm presuming you didn't do a postgresql backup (dump) recently? that would make things easy.
nope...did not.

ok, i uninstalled, and tried reinstalling again.

regardless of what i'm trying to do, i can't get past the Service Configuration page...

I do not know why it isn't accepting my account password...i have tried every possible combination.

so...yeah stuck on that. would it be helpful/beneficial at all if i created a new account name instead of "postgres"?
effang is offline   Reply With Quote
Old 05-25-2008, 05:25 PM   #5064
veteran
 
Join Date: Jun 2005
Location: Canada
Posts: 3,215
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by peyote View Post
Roy, I read here that the mgr (rake) number in the report includes the BBJ contributions at Party. I need this number without it to track the unmentionable

I've written a sql statement to get the BBJ contribution so I can subtract it from the mgr. How can I run it as a custom report/stat and does it look correct?

Code:
SELECT SUM(50.0/numberofplayers)/100.0 AS bbj 
 FROM playerhandscashkeycolumns 
  WHERE player_id = 123456
   AND pokerhand_id IN 
    (SELECT pokerhand_id FROM pokerhands p, tables t
      WHERE p.table_id = t.table_id
       AND t.tablename LIKE 'Jackpot%'
       AND p.handtimestamp >= '2008-05-01 00:00:00'
       AND numberofplayers >= 4)
   AND rakeamount >= 100.0 / numberofplayers
I actually found a bug with rake calcs that I'll need to fix - your rake will be a little less than actual with the current formula when I import hands. Anyways, here are 2 custom stats, one for the fixed rake paid and one for fixed rake paid wo BBJ. Put these in your customstats.txt file

<Stat ColumnName="Fixed Rake" ValueExpressions="sum((PKH.rakeamount)/100.0/PKH.numberofplayers) as totalfixedrake" Evaluate="TotalFixedRake" ColumnHeader="Rake*" ColumnFormat="$0.00" ColumnWidth="60" Tooltip="Rake with bug fixed" />

<Stat ColumnName="Rake wo BBJ" ValueExpressions="sum((PKH.rakeamount - case when TABLES.Tablename like 'Jackpot%' and PKH.rakeamount >= 50 then 50 else 0 end)/100.0/PKH.numberofplayers) as totalrakewobbj" Evaluate="TotalRakewoBBJ" ColumnHeader="Rake wo BBJ" ColumnFormat="$0.00" ColumnWidth="60" Tooltip="Rake without BBJ" />

Quote:
I initially installed .net 3.5 before realizing .net 2.0 was required. Is that an issue? I uninstalled .net 3.5 and downloaded .net 2.0 to install it, but during installation I get an error message saying this installation of .net is not compatible with a previous version. Please help!
Try reinstalling 3.5 - I believe it should all be backwards compatible.

Quote:
nope...did not.

ok, i uninstalled, and tried reinstalling again.

regardless of what i'm trying to do, i can't get past the Service Configuration page...

I do not know why it isn't accepting my account password...i have tried every possible combination.

so...yeah stuck on that. would it be helpful/beneficial at all if i created a new account name instead of "postgres"?
Dave might have a better answer but you should be able to change it from postgres to say postgresEffang and then continue with the installation.

Quote:
I have been checking my stats for the last 5 months (120k hands) and it takes forever to refresh the stats. It easliy takes 5 minutes every time I make a change or refresh the filters. I just vacumed the DB and that was no help, and my comp is pretty decent 1.66 Intel Duo & 1.5gb ram. Is there something I'm doing wrong? Is there anything I can do to speed it up?

Thanks for a great product BTW!
Can you try going into pgadmin and typing "analyze". This will analyze all the tables and hopefully get postgres using the right decision trees when grabbing info. I've heard of a few people with similar issues.

Also, some stats force joining of more tables which can definitely slow things down. Try just returning total amount won and see if that still take a few minutes or if it comes back immediately to help narrow down the issue.

Roy
rvg72 is offline   Reply With Quote
Old 05-25-2008, 05:30 PM   #5065
veteran
 
Join Date: Jun 2005
Location: Canada
Posts: 3,215
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Still working on 1.05.08c but just about done so should be releasing tonight. Here is the change list so far

* (1.05.08c BUG) Fixed issue with FTP 9-max cash games appearing as 10-max in the hud and positioning would be off
* (1.05.08c NEW) Added Check Raise Flop as PFR, as 3bet, Check Raise raised flop
* (1.05.08c NEW) Added many default .popup files and assigned them to all of the stats
* (1.05.08c NEW) Rebuilt the HUD Popup form to make things easier to use and added all of the recent stats. Please note, Default popups can not be edited however they can now be cloned and the clone can be edited. This is because we will be updating the defaults with more stats in future releases and do not want to overwrite your changes.
* (1.05.08c NEW) Added the option to have multiple lines per panel when using multi panels
* (1.05.08c BUG) Fixed bug when using mouse over popups. When going from one stat to the next, if they had the same panel the second one would appear blank.
* (1.05.08c BUG) Fixed full ring in the replayer - in the last build the positions of everything is off.
rvg72 is offline   Reply With Quote
Old 05-25-2008, 05:33 PM   #5066
_Pooh_Bah_
 
Join Date: Feb 2005
Location: UK
Posts: 8,484
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
I do not know why it isn't accepting my account password...i have tried every possible combination.
It is asking for a postgres password during postgres installation? or is this holdem manager?

What kind of crash did you have... I was assuming up until this point you had formatted / reinstalled windows - not so?
_dave_ is offline   Reply With Quote
Old 05-25-2008, 05:36 PM   #5067
Carpal \'Tunnel
 
fozzy71's Avatar
 
Join Date: Mar 2007
Posts: 29,170
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

default password possibilities = postgrespass , dbpass .
fozzy71 is offline   Reply With Quote
Old 05-25-2008, 05:41 PM   #5068
veteran
 
Join Date: Jun 2005
Location: Canada
Posts: 3,215
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by fozzy71 View Post
default password possibilities = postgrespass , dbpass .
I think he's referring to the postgres setup screen where sometimes the postgres account already exists from a previous installation and it gets all goofy unless you change the username from postgres to something else.

Roy
rvg72 is offline   Reply With Quote
Old 05-25-2008, 05:43 PM   #5069
Carpal \'Tunnel
 
fozzy71's Avatar
 
Join Date: Mar 2007
Posts: 29,170
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

I C - I was multi-tasking while attempting to post that one sentence. And saw about 5 new posts afterwards, that taught me my reading comprehension needs some work.

fozzy71 is offline   Reply With Quote
Old 05-25-2008, 05:44 PM   #5070
Pooh-Bah
 
Join Date: Jul 2006
Location: aggro donk + station
Posts: 3,518
Re: New Software: Holdem Manager - 1.05.08 - 24-May-2008

Quote:
Originally Posted by rvg72 View Post


Dave might have a better answer but you should be able to change it from postgres to say postgresEffang and then continue with the installation.

Roy
Ok, hell yes!!! i am not sure what i did, or what happened, but HM finally opened.

options, notes, exports notes...and i'm set?
i can now reformat, reinstall everything, and then import? no issues at all (no going back after this)...

Thanks!!!
effang is offline   Reply With Quote

Reply
      

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -4. The time now is 01:59 PM.


Powered by vBulletin®
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.
Copyright © 2008-2010, Two Plus Two Interactive