Bitcoin Forum
July 02, 2024, 08:23:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 [342] 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 ... 405 »
6821  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: June 30, 2011, 05:30:13 PM
Status updates:

gusti would like to see an example pool for each of your pools up and running with miners connected to show that it is working well.  I think this is a reasonable expectation.  If you know of someone using your pool code, post a link to their website.

darbsllim mentioned that one of his requirements was PHP, so only Xenland's solution fits that requirement.  Last he heard, Xenland's code was a big resource-hog, but I pointed out someone who is running his pool successfully with what appears to be very little resource usage.  (http://forum.bitcoin.org/index.php?topic=10617.msg303237#msg303237)

No reply from freeborn yet.
6822  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 05:13:07 PM
Still no go.  I tried:

Code:
curl -u myusername:mypassword --data-binary @json.txt -H 'content-type: application/json-rpc;' "http://192.168.1.10:8332/"

I got the same result as before - the parse error.  I also tried changing 1.0 to 2.0 in the json.txt file, still no go.  :\

Thanks for attempting to help, at least.  Tongue  Let me know if you have anything else I can try.  As you can probably tell by now, I am completely brand new to cURL, so I don't know syntax, etc yet.
6823  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: June 30, 2011, 05:06:10 PM
Xenland, it sounds like you are in contact with gusti, and he says that the pool isn't yet polished enough/doesn't meet all of the requirements.  Are you still working on it, and do you plan to fix the things that he has issue with?
6824  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 04:59:32 PM
Haha, didn't even catch that.  Still the same result though, with changing json.txt to have getinfo instead of getwork.

Code:
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}
6825  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 04:35:38 PM
Bitsky, bitcoind does not accept rpc requests from any ip's except those specified in the config file.  I have specified my local IP in the config, since I am on the same network.  The bitcoind server has no 3rd party firewall installed and the windows firewall is turned off.
6826  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: June 30, 2011, 04:21:05 PM
So neither of you have heard anything from any of the three bounty-givers?

I'm going to make one final contact via PM.  If they don't do anything about it, I'm leaving them negative feedback at my website.  It's just absurd that people say they are willing to give bounties, then don't back their word up with action.
6827  Bitcoin / Project Development / Re: [1 BTC BOUNTY] A way to use sendmany on: June 30, 2011, 04:16:49 PM
Thanks jav.  I can't give that a try right at the moment (will have to wait about 12 hours before I get home and can try it), but hopefully that will work.  If it does, I'll send you your 1 BTC.

Codler, I wish, but there is no sendmany function built in to bitcoin-php.  The project was abandoned a couple of months back because the dev didn't have time to update it, and that was before sendmany was built in as an rpc command.

Unless, you have some php files I don't have...  in which case, let me know where you got them!

I don't know what bitcoin-php is. Could you link bitcoin-php? Maybe I can implement it.
Sure thing:  http://www.nostate.com/3962/bitcoin-php-a-php-library-for-bitcoin/
6828  Bitcoin / Project Development / Re: [1 BTC BOUNTY] A way to use sendmany on: June 30, 2011, 03:44:54 PM
Thanks jav.  I can't give that a try right at the moment (will have to wait about 12 hours before I get home and can try it), but hopefully that will work.  If it does, I'll send you your 1 BTC.

Codler, I wish, but there is no sendmany function built in to bitcoin-php.  The project was abandoned a couple of months back because the dev didn't have time to update it, and that was before sendmany was built in as an rpc command.

Unless, you have some php files I don't have...  in which case, let me know where you got them!
6829  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 03:34:12 PM
Thanks for the reply Bitsky.  I tried using a textfile, along with this text in the command line:
Code:
curl -u myusername:mypassword --data-binary -d json.txt -H 'content-type: text/plain;' "http://192.168.1.10:8332/"

My json.txt had:
Code:
{"jsonrpc": "1.0", "id": "curltest", "method": "getwork", "params": [] }

And this is the error it came back with:
Code:
curl: (6) Could not resolve host: text; No data record of requested type 
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}

EDIT:  I tried putting the content-type argument in double quotes, and the curl: (6) error went away, but the result with the parse error still remained.  Does that mean that my connection is fine, but the json arguments aren't being handled properly by bitcoind?  If so, what is another string I could try?
6830  Bitcoin / Bitcoin Technical Support / Re: Best linux distro for bitcoind? on: June 30, 2011, 03:12:46 PM
Ah, makes sense unbuttered.  Yes, it will be more or less completely automated.  I'll be getting a security audit done on the site when it is completed, so hopefully whoever does that can share more opinions on that front.

bitlotto - thanks.  One of the VPS solutions I am looking at comes with centOS as the default OS, so I might go that route.  Security is definitely the most important factor.
6831  Bitcoin / Project Development / [1 BTC BOUNTY] A way to use sendmany on: June 30, 2011, 07:46:19 AM
I just want to send BTC to a list of addresses I have.  Really, it's a simple request, and I thought it would have a simple answer, but I can find no simple answer.

bitcoin-php does not have the sendmany function in its library, and I have been unable to successfully add it.  I just don't know enough about json formatting and how to go back and forth between the two.

So, I will pay 1 BTC for a script, preferably in php, but acceptable in python or curl as well, that will allow me to quickly and easily send BTC to a list of addresses and amounts.
6832  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 07:36:41 AM
I suppose I'll keep replying to my own topic...

Now I am attempting the cURL route, based on the example put forth here:  https://en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29

Problem is, this example doesn't work - it just errors out.  Any idea why?  Ultimately, I'd like to use a batch script along with curl to try using the sendmany command with a predefined list of addresses and amounts set in a batch script.  But to start, I've at least got to get some sort of legitimate response from the bitcoind service.

Code:
C:\curl\bin>curl -u myusernamewashere:mypasswordwashere --data-binary '{"jsonrpc": "1
.0", "id":"curltest", "method": "getwork", "params": [] }' -H 'content-type: tex
t/plain;' "http://192.168.1.10:8332/"
curl: (6) Could not resolve host: 1.0,; No data record of requested type
curl: (6) Could not resolve host: id; No data record of requested type
curl: (6) Could not resolve host: method; No data record of requested type
curl: (6) Could not resolve host: getwork,; No data record of requested type
curl: (6) Could not resolve host: params; No data record of requested type
curl: (3) [globbing] illegal character in range specification at pos 2
curl: (3) [globbing] unmatched close brace/bracket at pos 1
curl: (6) Could not resolve host: text; No data record of requested type
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}
6833  Bitcoin / Development & Technical Discussion / Re: Need some help with sendmany and php... on: June 30, 2011, 06:52:12 AM
Well this attempt failed...

Code:
  public function sendmany($addressarr, $amountarr, $comment = NULL, $comment_to = NULL) {
      if (!$addressarr || empty($addressarr))
        throw new BitcoinClientException("sendmany requires a destination address");
      if (!$amountarr || empty($amountarr))
        throw new BitcoinClientException("sendmany requires an amount to send");
      //if (!is_numeric($amountarr) || $amountarr <= 0)
      //  throw new BitcoinClientException("sendmany requires the amount sent to be a number > 0");
      //$amountarr = floatval($amountarr);
      if (!$comment && !$comment_to)
        return $this->query("sendmany", $addressarr, $amountarr);
      if (!$comment_to)
        return $this->query("sendmany", $addressarr, $amountarr, $comment);
      return $this->query("sendmany", $addressarr, $amountarr, $comment, $comment_to);
  }
It literally crashes my http service if I try using this function by sending two arrays to it.  Note that I also commented out the isnumeric check, since an array isn't numeric.

Suggestions?
6834  Bitcoin / Bitcoin Technical Support / Re: Best linux distro for bitcoind? on: June 30, 2011, 06:17:13 AM
Thanks for the input from both of you.

I can't reveal the project at this time... sorry!
6835  Economy / Goods / Re: Selling Top Ramen - $0.05 in BTC on: June 30, 2011, 03:39:50 AM
So, if my calculations are correct, I can get 340 top ramen for 1 BTC?  Cheesy
6836  Economy / Goods / Re: What is a lowball offer? on: June 30, 2011, 03:33:26 AM
I still don't understand why people get insulted at low offers.  If you don't like the offer, just decline.  Simple as that.  No need to get riled up about it - that'll just make you die sooner.   Cheesy

Regardless, I'll step out of this thread, since I'm not liable to convince anyone.
6837  Bitcoin / Development & Technical Discussion / Re: Launch of BitPay, worlds first smartphone-wallet for bitcoins on: June 30, 2011, 03:23:16 AM
Does it store the entire blockchain on the mobile device, or have you figured out a way to program a "lite" wallet?

It doesn't store any of the blockchain. It is not a Bitcoin client itself, simply a frontend for Instawallet.
Ahhh, ok.  Still, that's neat, and that gets the ball rolling on mobile wallets, which are desperately needed!

I'm not sure what sort of 2D barcode format you are currently using, but why not simply adopt the now-standard QR code?
6838  Bitcoin / Bitcoin Technical Support / Best linux distro for bitcoind? on: June 30, 2011, 03:11:07 AM
If I was to host a bitcoind installation for a webserver, and I'm a complete linux noob, what would be the best version of linux to use?

Also, is there an installation guide for how to install bitcoind on a linux box?  I don't want to compile it or anything, just want it to run.

Also, would it be a good idea to keep the website server and bitcoind server separate, not on the same box, for security reasons?  Or is that not a concern?
6839  Bitcoin / Project Development / Re: To the owner of http://www.flexcoin.com/ on: June 29, 2011, 11:24:44 PM
Code:
The information in this whois database is provided for the sole
purpose of assisting you in obtaining information about domain
name registration records. This information is available "as is,"
and we do not guarantee its accuracy. By submitting a whois
query, you agree that you will use this data only for lawful
purposes and that, under no circumstances will you use this data
to: (1) enable high volume, automated, electronic processes that
stress or load this whois database system providing you this
information; or (2) allow,enable, or otherwise support the
transmission of mass, unsolicited, commercial advertising or
solicitations via facsimile, electronic mail, or by telephone to
entitites other than your own existing customers.  The
compilation, repackaging, dissemination or other use of this data
is expressly prohibited without prior written consent from this
company. We reserve the right to modify these terms at any
time. By submitting an inquiry, you agree to these terms of usage
and limitations of warranty.  Please limit your queries to 10 per
minute and one connection.

   Domain Services Provided By:
      Domain Bank, support@domainbank.com
      http://www.domainbank.com

Registrant:
   Yooter
   One South Second Street
   Pottsville, PA  17901
   US

   Registrar: DOMAINBANK
   Domain Name: FLEXCOIN.COM
      Created on: 09-JUN-11
      Expires on: 09-JUN-12
      Last Updated on: 09-JUN-11

   Administrative, Technical Contact:
      Wehbe, Roger  president@yooter.com
      Yooter
      One South Second Street
      Pottsville, PA  17901
      US
      610-762-2156


   Domain servers in listed order:
      NS1.YOOTER.NET
      NS2.YOOTER.NET
      NS3.YOOTER.NET

End of Whois Information
  The previous information has been obtained either directly from the registrant or a registrar of the domain name other than Network Solutions. Network Solutions, therefore, does not guarantee its accuracy or completeness.
6840  Economy / Games and rounds / Re: Make me laugh for a bitcent on: June 29, 2011, 11:19:16 PM
Some of my favorites from today's catchup of the site...
_______________________________________________________________________________ ________

_______________________________________________________________________________ ________

_______________________________________________________________________________ ________

_______________________________________________________________________________ ________
Pages: « 1 ... 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 [342] 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 ... 405 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!