Bitcoin Forum
March 19, 2024, 05:56:28 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 [194] 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 ... 272 »
  Print  
Author Topic: SatoshiDICE.com - The World's Most Popular Bitcoin Game  (Read 495437 times)
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 06, 2016, 03:30:20 PM
 #3861

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!
1710827788
Hero Member
*
Offline Offline

Posts: 1710827788

View Profile Personal Message (Offline)

Ignore
1710827788
Reply with quote  #2

1710827788
Report to moderator
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 06, 2016, 04:22:31 PM
 #3862


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.

lite
Legendary
*
Offline Offline

Activity: 1400
Merit: 1009


View Profile
May 06, 2016, 05:07:53 PM
 #3863


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)
rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 06, 2016, 05:35:25 PM
 #3864

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.
rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 06, 2016, 05:47:22 PM
 #3865


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.





hatshepsut93
Legendary
*
Offline Offline

Activity: 2912
Merit: 2125



View Profile
May 06, 2016, 06:59:12 PM
 #3866

Anyone else can't connect? DDOS maybe?

.BEST.CHANGE..███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 06, 2016, 11:14:44 PM
Last edit: May 07, 2016, 01:39:10 AM by Randian Hero
 #3867

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.

rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 07, 2016, 04:51:04 AM
 #3868


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

Thank You.
BayAreaCoins
Legendary
*
Offline Offline

Activity: 3864
Merit: 1237


Owner at AltQuick.com & FreeBitcoins.com


View Profile WWW
May 07, 2016, 10:32:13 PM
 #3869

Sad to see such a cool site go down hill so much Sad

https://AltQuick.com/exchange/ - Trade altcoins & Bitcoin Testnet coins with real Bitcoin.
https://FreeBitcoins.com/faucet/ - Load your AltQuick exchange account with free Bitcoins every 10 minutes.
Dabs
Legendary
*
Offline Offline

Activity: 3416
Merit: 1912


The Concierge of Crypto


View Profile
May 08, 2016, 02:36:20 AM
 #3870

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?)

coinspiracy
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
May 08, 2016, 08:50:21 PM
 #3871

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.
tolega
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 08, 2016, 08:58:57 PM
 #3872

I have searched all over the site but I cannot find the withdraw button. I am logged in. Please help.

Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 08, 2016, 09:47:44 PM
Last edit: May 09, 2016, 01:08:46 AM by Randian Hero
 #3873

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.
tolega
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 09, 2016, 12:02:24 AM
 #3874

Radian Hero is helping me via email. Thank you
therealwatcher
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 09, 2016, 08:03:33 AM
 #3875

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.
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 09, 2016, 11:35:24 AM
 #3876

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!
HarryKPeters
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


Live Stars - Adult Streaming Platform


View Profile
May 09, 2016, 01:54:20 PM
 #3877

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.

sh_
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
May 09, 2016, 05:49:38 PM
 #3878

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.
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 09, 2016, 09:20:48 PM
 #3879

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
*
Offline Offline

Activity: 5
Merit: 0


View Profile
May 10, 2016, 04:12:34 PM
 #3880

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.

Confirmed! Thank you!
Pages: « 1 ... 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 [194] 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 ... 272 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!