Pages:
Author

Topic: SatoshiDICE.com - The World's Most Popular Bitcoin Game - page 79. (Read 495680 times)

sr. member
Activity: 438
Merit: 250
One of my bets (blockchain) is stuck since a whole month.
I wrote three mails to support (Sep 29th, Oct 4th and Oct 12th) but never got an answer.
The coins are unspent so it might be a technical problem. But support is very bad.
txid: 3d8a8622915d48f4a1c3601904cb8cca877020dcf25b72c061a77f34af9ef6c6
https://blockchain.info/en/tx/3d8a8622915d48f4a1c3601904cb8cca877020dcf25b72c061a77f34af9ef6c6?show_adv=true



@SatoshieDICE_PR: This is still an issue. Would you please take a look at my problem?

My problem still hasn't been resolved. Did some more blockchain bets which went smooth, but the bets from the transaction above are still not processed. Please take a look at this!

Problem still not solved. Support not responding.

We're no longer processing block chain bets and not publishing addresses on the website. The blockchain betting code needs to be completely rewritten before we can put this game back.

I have credited your address for the bet. Sorry about the delay.
sh_
newbie
Activity: 5
Merit: 0
One of my bets (blockchain) is stuck since a whole month.
I wrote three mails to support (Sep 29th, Oct 4th and Oct 12th) but never got an answer.
The coins are unspent so it might be a technical problem. But support is very bad.
txid: 3d8a8622915d48f4a1c3601904cb8cca877020dcf25b72c061a77f34af9ef6c6
https://blockchain.info/en/tx/3d8a8622915d48f4a1c3601904cb8cca877020dcf25b72c061a77f34af9ef6c6?show_adv=true



@SatoshieDICE_PR: This is still an issue. Would you please take a look at my problem?

My problem still hasn't been resolved. Did some more blockchain bets which went smooth, but the bets from the transaction above are still not processed. Please take a look at this!

Problem still not solved. Support not responding.
hero member
Activity: 896
Merit: 1000
Live Stars - Adult Streaming Platform
I never heard of this site but now that I see it I am sure going to check it out. I am not that much of a gambler but I like playing sometimes for fun when I am with some friends.
I hope that I can win some money this time because when it comes to gambling luck is never on my side.
sr. member
Activity: 438
Merit: 250
There was a bug in the js code that prevented people from using email addresses on subdomains, eg subdomain.domain.tld. It's been fixed now!

Also there is no longer any need to confirm email addresses. Just set your email, password, DOB and you can login immediately!
member
Activity: 70
Merit: 10
Sad to see such a cool site go down hill so much Sad
Yeah. So many sites going down hill. ... SD isn't so much in trouble I think though, they still have a professional team handling it. (psst, someone buy mine?)

Personally, I believe that they will sort this page out.

one can only hope, got help via email now anyway, thanks.
full member
Activity: 196
Merit: 100
Radian Hero is helping me via email. Thank you
sr. member
Activity: 438
Merit: 250
I have searched all over the site but I cannot find the withdraw button. I am logged in. Please help.



Click the Cashout tab and there is a button with the text "CASHOUT". If you are not logged in, the button is not visible.

UPDATE: we're now aware of tabs not showing properly on android phones. We're fixing it.
full member
Activity: 196
Merit: 100
I have searched all over the site but I cannot find the withdraw button. I am logged in. Please help.

member
Activity: 94
Merit: 10
Sad to see such a cool site go down hill so much Sad
Yeah. So many sites going down hill. ... SD isn't so much in trouble I think though, they still have a professional team handling it. (psst, someone buy mine?)

Personally, I believe that they will sort this page out.
legendary
Activity: 3416
Merit: 1912
The Concierge of Crypto
Sad to see such a cool site go down hill so much Sad
Yeah. So many sites going down hill. ... SD isn't so much in trouble I think though, they still have a professional team handling it. (psst, someone buy mine?)
legendary
Activity: 3934
Merit: 1248
Owner at AltQuick.com
Sad to see such a cool site go down hill so much Sad
newbie
Activity: 55
Merit: 0

Now the API is not working for me,
no response ( timeout )

Thank You.
sr. member
Activity: 438
Merit: 250
Anyone else can't connect? DDOS maybe?

It was login, signup and password recovery calls that died early because of an emergency code update that expected "equal" instead of "identical" operator, and this triggered a site wide user access lock down. Then a process lagged one of the servers. It was not a DDoS.

I have corrected the error now. Sorry about causing this glitch. Assumptions are the root of all evil.

legendary
Activity: 3024
Merit: 2148
Anyone else can't connect? DDOS maybe?
newbie
Activity: 55
Merit: 0

Quote
Blocked how? it stops processing anything or you get logged out? Does it give any error message in the API response?

If I use this header

Code:
$curl_header[] = "Referer: https://www.satoshidice.com";

The api works until it locks and does not give more answer. ( timeout )

Without this header the api not works, I am receiving this response

Code:
HTTP/1.1 100 Continue

HTTP/1.1 200 OK
Date: Thu, 05 May 2016 16:13:11 GMT
Server: SatoshiDICE Webserver
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
access-control-allow-origin: https://www.satoshidice.com
Access-Control-Allow-Credentials: true
Content-Length: 58
Content-Type: application/json

{
    "message": "Password is wrong.",
    "status": "1"
}

Thank you.





newbie
Activity: 55
Merit: 0
Quote
Just a suggestion you should add function to store cookie? i've seen lot of curl script have it.(i'm no expert)

That I have implemented, I put here just a part of the code to be more readable.

Thank You.
legendary
Activity: 1400
Merit: 1009

I use this code run 5 minutes and then blocked again

Code:

  $url = "https://session.satoshidice.com/userapi/login.php";
 
  $postdata = NULL;
  $postdata = array();
  $postdata['email'] = $config['satoshi_email'];
  $postdata['password'] = $config['satoshi_pass'];
 
  $satoshi_wait_between_query = $config['satoshidice_wait_between_query'];

  $curl_header = NULL;
  $curl_header = array();
  $curl_header[] = "User-Agent: ".$config['martingale_user_agent']." ".$version;
  $curl_header[] = "Referer: https://www.satoshidice.com";

  $curl = curl_init();
  curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($curl,CURLOPT_HEADER,1);
  curl_setopt($curl,CURLOPT_HTTPHEADER,$curl_header);
  curl_setopt($curl,CURLOPT_URL,$url);
  curl_setopt($curl,CURLOPT_BINARYTRANSFER,true);
  curl_setopt($curl,CURLOPT_POST,true);
  curl_setopt($curl,CURLOPT_POSTFIELDS,$postdata);
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
  curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);
  curl_setopt($curl,CURLOPT_TIMEOUT,122);
  if(isset($config['proxy']) && (strlen($config['proxy'])>0)) curl_setopt($curl,CURLOPT_PROXY,$config['proxy']);
  $response = curl_exec($curl);
 
  $response_header_size = curl_getinfo($curl,CURLINFO_HEADER_SIZE);
  $header = substr($response,0,$response_header_size);
  $body = substr($response,$response_header_size);
  curl_close($curl);


Thank You.



Blocked how? it stops processing anything or you get logged out? Does it give any error message in the API response?

No response, is waiting for a response to the timeout

Thank you.


Just a suggestion you should add function to store cookie? i've seen lot of curl script have it.(i'm no expert)
newbie
Activity: 55
Merit: 0

I use this code run 5 minutes and then blocked again

Code:

  $url = "https://session.satoshidice.com/userapi/login.php";
 
  $postdata = NULL;
  $postdata = array();
  $postdata['email'] = $config['satoshi_email'];
  $postdata['password'] = $config['satoshi_pass'];
 
  $satoshi_wait_between_query = $config['satoshidice_wait_between_query'];

  $curl_header = NULL;
  $curl_header = array();
  $curl_header[] = "User-Agent: ".$config['martingale_user_agent']." ".$version;
  $curl_header[] = "Referer: https://www.satoshidice.com";

  $curl = curl_init();
  curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($curl,CURLOPT_HEADER,1);
  curl_setopt($curl,CURLOPT_HTTPHEADER,$curl_header);
  curl_setopt($curl,CURLOPT_URL,$url);
  curl_setopt($curl,CURLOPT_BINARYTRANSFER,true);
  curl_setopt($curl,CURLOPT_POST,true);
  curl_setopt($curl,CURLOPT_POSTFIELDS,$postdata);
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
  curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);
  curl_setopt($curl,CURLOPT_TIMEOUT,122);
  if(isset($config['proxy']) && (strlen($config['proxy'])>0)) curl_setopt($curl,CURLOPT_PROXY,$config['proxy']);
  $response = curl_exec($curl);
 
  $response_header_size = curl_getinfo($curl,CURLINFO_HEADER_SIZE);
  $header = substr($response,0,$response_header_size);
  $body = substr($response,$response_header_size);
  curl_close($curl);


Thank You.



Blocked how? it stops processing anything or you get logged out? Does it give any error message in the API response?

No response, is waiting for a response to the timeout

Thank you.

sr. member
Activity: 438
Merit: 250
I just corrected a glitch that made the API respond with invalid email on signups with email addresses using subdomains or TLD's with a dot in them (like .co.uk). Anyone that had this problem might need to sign up again.

Note: there is no longer any need for email confirmation. Once you sign up, you can just enter your email and password and login!
sr. member
Activity: 438
Merit: 250

I use this code run 5 minutes and then blocked again

Code:

  $url = "https://session.satoshidice.com/userapi/login.php";
  
  $postdata = NULL;
  $postdata = array();
  $postdata['email'] = $config['satoshi_email'];
  $postdata['password'] = $config['satoshi_pass'];
  
  $satoshi_wait_between_query = $config['satoshidice_wait_between_query'];

  $curl_header = NULL;
  $curl_header = array();
  $curl_header[] = "User-Agent: ".$config['martingale_user_agent']." ".$version;
  $curl_header[] = "Referer: https://www.satoshidice.com";

  $curl = curl_init();
  curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($curl,CURLOPT_HEADER,1);
  curl_setopt($curl,CURLOPT_HTTPHEADER,$curl_header);
  curl_setopt($curl,CURLOPT_URL,$url);
  curl_setopt($curl,CURLOPT_BINARYTRANSFER,true);
  curl_setopt($curl,CURLOPT_POST,true);
  curl_setopt($curl,CURLOPT_POSTFIELDS,$postdata);
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
  curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);
  curl_setopt($curl,CURLOPT_TIMEOUT,122);
  if(isset($config['proxy']) && (strlen($config['proxy'])>0)) curl_setopt($curl,CURLOPT_PROXY,$config['proxy']);
  $response = curl_exec($curl);
  
  $response_header_size = curl_getinfo($curl,CURLINFO_HEADER_SIZE);
  $header = substr($response,0,$response_header_size);
  $body = substr($response,$response_header_size);
  curl_close($curl);


Thank You.



Blocked how? it stops processing anything or you get logged out? Does it give any error message in the API response?
Pages:
Jump to: