Connection Error on launching Hold’em Manager Poker

Asked By 20 points N/A Posted on -
qa-featured

I am trying to launch Hold’em Manager Poker Software on my Windows 7 computer. But it comes out with error message as shown below.

I have searched online and some forum is explaining that this error is due to Firewall or Windows Update Issue.

I just don’t know which step is next to it.

Can someone here please help me?

DB ControlPanel

Connection Error: A timeout has occurred. If you were establishing a connection, increase Timeout value in ConnectionString. If you were executing command, increate the CommandTimeout value in ConnectionString or in your NpgsqlCommand object.

Npgsql.NpgsqlException

A timeout has occured. If you were establishing a connection, increase timeout value in ConnectionString. If you were executing a command increase the CommandTimeout value in your ConnectionString or in your NpgsqlCommand object.

at Npgsql.NpgsqlState ProcessBackendResponsesEnum(NpgsqlConnector context)

at Npgsql.NpgsqlConnectedState.Startup(NpgsqlConnector context)

at Npgsql.NpgsqlConnector Open()

at Npgsql.NpgsqlConnectorPoolGetPooledConnector(NpgsqlConnection Connection)

at Npgsql.NpgsqlConnectorPoolGetPooledConnectorInternal(NpgsqlConnection Connection)

at Npgsql.NpgsqlConnectorPoolGetPooledConnector(NpgsqlConnection Connection)

at Npgsql.NpgsqlConnectorPoolRequestPooledConnector(NpgsqlConnection Connection)

at Npgsql.NpgsqlConnection open()

at (Object A_0, EventArgs A_1)

OK

SHARE
Answered By 0 points N/A #120302

Connection Error on launching Hold’em Manager Poker

qa-featured

To resolve that problem, you will need to set the following value in web.config.  For instance, to be able to change the timeout for one specific page you will need to do something close to the following:

<location path="somefile.aspx">

        <system.web>

               <httpRuntime executionTimeout="180"/>

        </system.web>

</location>

As an additional to the above, you will also need to set the timeout for your managed data provider. You will need to make sure that you have added timeout=xx where xx in this case is a value in seconds in your connection string, and then you will have to set every DbCommand.CommandTimeout property and see if that will resolve the issue.

Mathew Stone

 

Related Questions