Bitcoin Forum
May 24, 2024, 06:46:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 »
201  Bitcoin / Development & Technical Discussion / Re: JSON-RPC password on: April 15, 2011, 02:08:12 PM
I'll arrive home in a few hours then I'll check if that's the problem

Thanx a lot dude
202  Economy / Trading Discussion / Re: I wish I could buy X with bitcoin... on: April 15, 2011, 09:03:10 AM
What's that website that lists all the services offered in bitcoins ( i mean... not the bitcoin.it).

I look at the links on people's signatures then I can never remember the addresses or where I found those websites
203  Other / Meta / Re: Switch forum software? on: April 15, 2011, 08:31:14 AM
voted the first option, but I don't love sfm  Tongue
204  Bitcoin / Development & Technical Discussion / Re: JSON-RPC password on: April 15, 2011, 05:40:39 AM
Alright, this thing I'm having a problem with:

Code:
        $result1 = $rpc->getbalance($fromAccount);
    $result2 = $rpc->sendfrom($fromAccount, $toAccount, $amount);

The first line works fine and gets me:

Code:
1***** Request *****
{"method":"getbalance","params":["fetokun"],"id":1}
***** End Of request *****

***** Server response *****
{"result":3639.00000000,"error":null,"id":1}
***** End of server response *****

But the second line gets me:
Code:
Warning: fopen(http://...@localhost:8332/): failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error in /var/www/meubitcoin/src/classes/jsonRPCClient.php on line 132 Fatal error: Uncaught exception 'Exception' with message 'Unable to connect...

Anybody knows why?

my bitcoin.conf:

Code:
rcpallowip=127.0.0.1
rpcuser=fetokun
rpcpassword=rcpass123
rpcport=8332
server=1
testnet=1
205  Economy / Marketplace / Re: 2+ month AutoVPS account to transfer for bitcoins. on: April 15, 2011, 05:13:39 AM
I already closed a deal with a user who offered me his new VPS service after seeing me bid here =/

But thanx a lot, noagendamarket
206  Economy / Marketplace / Re: 2+ month AutoVPS account to transfer for bitcoins. on: April 14, 2011, 07:40:40 PM
44.44 BTC - Noagenda going to clean up on this  Wink

You know I hate you, right?  Wink
I'm done... this has already gone too far (Yeah, I know... I'm pretty poor)  Cheesy
207  Local / Português (Portuguese) / Re: Português on: April 14, 2011, 06:43:56 PM
fetokun (e quem mais esteja interessado), eu li num outro thread que estás procurando hosting. Caso não precise de ser mesmo no continente americano, manda PM com as caracteristicas que procuras (ram, hd, SO) que eu tento fazer um negócio bacana com uma VPS em Portugal.

PM enviada
208  Economy / Marketplace / Re: 2+ month AutoVPS account to transfer for bitcoins. on: April 14, 2011, 06:23:48 PM
42 btc
209  Economy / Marketplace / Re: Donate to the Nation Protesters Pizza Supply on: April 14, 2011, 06:22:38 PM
"This is a fund to provide protesters with legitimate demands with pizza all over the United States."

How do they judge what's a legitimate demand?
210  Economy / Marketplace / Re: 2+ month AutoVPS account to transfer for bitcoins. on: April 14, 2011, 04:27:53 PM
38 BTC =D

Keep in mind it will be used to host the first website to convert BTC from and to Reais (Brazilian currency) =D

(I already registered the domain (meubitcoin.com.br), just need a place to host it )
211  Economy / Marketplace / Re: 2+ month AutoVPS account to transfer for bitcoins. on: April 14, 2011, 12:54:09 PM
What about 30btc for it right now?
212  Local / Português (Portuguese) / Re: Português on: April 14, 2011, 06:59:14 AM
Comprei com o Peao também... recomendo! =D
213  Bitcoin / Bitcoin Discussion / Re: domain registrar w/bitcoin payment on: April 13, 2011, 04:57:06 PM
At https://en.bitcoin.it/wiki/Trade you can see these two:

KalyHost, domain names, web hosting, VPS
Privacy Shark, anonymous domain names and dns

But probably some other bitcoin-accepting hosts will also register your domain name

214  Other / Archival / Re: Silk Road: anonymous marketplace. Feedback requested :) on: April 12, 2011, 10:08:45 AM
Quote

I really liked this!
215  Local / Português (Portuguese) / Re: Português on: April 12, 2011, 09:57:51 AM
Este fim de semana fiz uns 30% do site
Minha idéia é que seja um misto de mybitcoin com coinpal

Mandei um e-mail pra 5 serviços brasileiros do estilo PayPa, vamos ver qual vai se sair melhor nas respostas

216  Bitcoin / Project Development / Re: BitPal - PayPal like payment processor on: April 12, 2011, 08:50:44 AM
I was thinking of making Bitcoin Payments easier for people who don't have time or knowledge to use exchangers, wallets and so on.
It should work like this:

I negotiate to the merchants to accept my service. This should be free for both.
The customer enters the website, sees some alpaca socks he likes and because he does not have any bitcoins he pays with bitpal.
The transaction is carried on like this:
Customers pays with his credit/debit card and fills in the data just like using PayPal OR, better, those credit card processors that you don't need an account with. Only thing is the site the client is in has to have registration. Then, once the payment is cleared, the system takes the bitcoins (from a pool of btc within BitPal) that are equal to the USD, EUR or whatever the customer payed with and transfers them to the sellers account. After that, BitPal should move the money to buy some more BTC and recirculate them.

The biggest issue here are the prices. How much a Bitcoin at BitPal should cost, so BitPal would be covered and maybe make some profit but to also make the client interested.

ther is also the issue of chargebacks
217  Economy / Marketplace / Re: BitcoinUSA.com - Closed Some source code opened up. on: April 12, 2011, 08:36:16 AM
For those messing around with a PHP site, you can pull info from MtGox's site easily with his json api. A PHP Sample:

Code:
<?php
    
//Pull MTGOX Prices
    
$mtgoxtrade file_get_contents("https://www.mtgox.com/code/data/ticker.php");

    
//decode json information and place into array
    
$gettradedata json_decode($mtgoxtrade);
    
$tickerarray $gettradedata->ticker;

    
//Get the Current Bid, Ask, or any other data available. 
    
$CurrentBid $tickerarray->buy;
    
$CurrentAsk $tickerarray->sell
    
$CurrentVolume $tickerarray->vol
    
$CurrentHigh $tickerarray->high
    
$CurrentLow $tickerarray->low
    
$LastPrice $tickerarray->last
?>

/quote]

Thanx a lot dude! You saved me some time =D
218  Economy / Marketplace / Re: Get 1BTC, and £5 free calling credit for signing up to GiffGaff [19 Slots] on: April 12, 2011, 07:09:22 AM
Will you ship to Italy?
219  Economy / Marketplace / Re: xkcd's bitcoin hole on: April 12, 2011, 06:28:51 AM
donated 0.10 =D
220  Bitcoin / Development & Technical Discussion / Re: JSON-RPC password on: April 10, 2011, 01:29:32 PM
found the problem

All I had to do was RTFM properly =D
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!