If you Need a Programmer

For general discussion of the Poker Mavens software
Post Reply
Bonza
Posts: 31
Joined: Fri Feb 17, 2012 2:54 pm
Location: UK
Contact:

If you Need a Programmer

Post by Bonza »

A couple of weeks ago i asked for someone to help me with programming i got a reply from PokerMavenDeveloper he did what i needed and then the next day told me he upgraded the program that made it easier to use,

If you need anything he is your man to go to i highly recommend him iv even gone back to him for other things :D
Image
New Team Concept poker site
http://www.huskyteampoker.co.uk
PokerMavenDeveloper
Posts: 66
Joined: Fri Feb 24, 2012 5:11 pm

Re: If you Need a Programmer

Post by PokerMavenDeveloper »

Thaaks Bonza :D
PokerMavenDeveloper
Posts: 66
Joined: Fri Feb 24, 2012 5:11 pm

Curl Problem

Post by PokerMavenDeveloper »

i had the following problem with curl call
Warning: curl_error(): 2 is not a valid cURL handle resource in /home/sportpar/public_html/fpoker/admindtp/API.php on line 15
ocurio error
Poker Server Status
Error: Connection failed Password=t~GNhmT;h@ http://xx.xxx.xxx.xx:8087/api
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Curl Problem

Post by Kent Briggs »

PokerMavenDeveloper wrote:i had the following problem with curl call
Warning: curl_error(): 2 is not a valid cURL handle resource in /home/sportpar/public_html/fpoker/admindtp/API.php on line 15
Make sure you aren't calling any curl functions after you've already called curl_close();
PokerMavenDeveloper
Posts: 66
Joined: Fri Feb 24, 2012 5:11 pm

Re: If you Need a Programmer

Post by PokerMavenDeveloper »

Code: Select all

   curl_setopt($curl,CURLOPT_POST,true);
    curl_setopt($curl,CURLOPT_POSTFIELDS,$params);
    curl_setopt($curl,CURLOPT_TIMEOUT,30);
    curl_setopt($curl,CURLOPT_RETURNTRANSFER,true); 
    $response = trim(curl_exec($curl));
    curl_close($curl);
    $api = Array();
i no hvae idea wath conecction fail :(, im using a vps curl is enabled thanks for your help
PokerMavenDeveloper
Posts: 66
Joined: Fri Feb 24, 2012 5:11 pm

Re: If you Need a Programmer

Post by PokerMavenDeveloper »

i think my hosting provider is blocking the port, because i test from my locolhost the system work perfectly :(
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: If you Need a Programmer

Post by Kent Briggs »

PokerMavenDeveloper wrote:i think my hosting provider is blocking the port, because i test from my locolhost the system work perfectly :(
Yes, that's very common. They often block all outgoing ports except for 80 and 443. I had to specifically ask my web hosting service to open those up.
PokerMavenDeveloper
Posts: 66
Joined: Fri Feb 24, 2012 5:11 pm

Re: If you Need a Programmer

Post by PokerMavenDeveloper »

Yes Kent was that problem my hosting provider, thanks for your help
Post Reply