Bitcoin Forum
June 24, 2024, 11:20:33 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Progetti / Re: Nuova Moneta progetto. on: August 24, 2015, 07:33:19 PM
Salve,

Abbiamo pensato di utilizzare una moneta stile "Bytecoin" da distribuire con un nuovo paradigma aziendale. Abbiamo provato a scaricare i sorgenti e a compilarli ma inevitabilmente ci sono degli errori di compilazione.
Ciao,
Da quello che ho letto volete creare un cryptomoneta uguale ai bitcoin, per farlo non basta scaricare i sorgenti da github e compilarli. In questo modo non fai altro che creare un demone bitcoind.
2  Bitcoin / Project Development / Re: Order addresses to an account bitcoind on: June 24, 2015, 04:23:22 PM
I'm sorry , but "bitcoin-cli getaccountaddress maik" nothing changes .
3  Bitcoin / Project Development / Order addresses to an account bitcoind on: June 24, 2015, 09:31:52 AM
I have dmeone bitcoind on my PC with an account with several addresses. To create a new address I "bitcoin-cli getnewaddress maik" in this way bitcoind adds a new address to account maik. The problem is that when I do "bitcoin-cli getaddressesbyaccount maik" the demon gives me back a list degl 'addresses in random order, in meaning they are not placed in order from oldest to newest. How do I solve this problem.
4  Bitcoin / Project Development / Was easybitcoin and php5 on: June 05, 2015, 04:06:06 PM
I'm using the library easybitcoin to interact with php bitcoind this and the file test.php when I run it I get this error: Notice: Array to string conversion in Array

Code:
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL | E_STRICT);

require_once ('easybitcoin.php');
$bitcoin = new Bitcoin('bitcoinrpc','G7BZDHzNdbJ38oqmXSHXbYwsbNY6Djz3gX9SAE7fisud');
$info = $bitcoin->getinfo();
echo $info;

I solved the problem with print_r ($ info)
5  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 09:26:19 PM
I solved the problem by sudo apt-get install db5.1-util
6  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 09:15:45 PM
I followed to the letter all that you told me but I always get: Reading package lists ... Done
Building dependency tree
Reading state information ... Done
Package libdb4.8 ++ - dev is not available, but is Referred to by another package.
This may mean That the package is missing, Has Been obsoleted, or
is only available from another source
Package libdb4.8-dev is not available, but is Referred to by another package.
This may mean That the package is missing, Has Been obsoleted, or
is only available from another source
E: Package 'libdb4.8-dev' has no installation candidate
E: Package 'libdb4.8 ++ - dev' has no installation candidate
7  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 08:48:50 PM
After ./configure gives me an error: error: Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore or --disable-wallet to disable wallet functionality) I tried to give ./configure --with-bdb-compatible and ./configure --with-bdb-compatible \ but I always get the same error. How can I fix
That means that the BerkeylyDB version is not compatible with Bitcoin core. To install the correct one, run these:
Code:
deb http://[mirror]/debian/ oldstable main
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

Then compile.

When do I get sudo apt-get install libdb4.8-dev libdb4.8++-dev: Package 'libdb4.8-dev' has no installation candidate
E: Package 'libdb4.8 ++ - dev' has no installation candidate
8  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 08:21:58 PM
After ./configure gives me an error: error: Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore or --disable-wallet to disable wallet functionality) I tried to give ./configure --with-bdb-compatible and ./configure --with-bdb-compatible \ but I always get the same error. How can I fix
9  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 08:03:31 PM
I compiled bitcoind following this guide http://bitcoin-austria.at/artikel/full-bitcoind-node-debian-7-server  the debug file is too large are 4.5 Mb how can I do to publish
That's the problem. You compiled with --disable-wallet option and this prevents you from being able to use the getaccountaddress option which requires a wallet. Try recompiling using these instructions instead: https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md
I realized I too when I read " When the intention is to run only a P2P node without a wallet, bitcoin may be compiled in disable-wallet mode with:

./configure --disable-wallet "
10  Bitcoin / Bitcoin Technical Support / Re: Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 07:52:35 PM
I compiled bitcoind following this guide http://bitcoin-austria.at/artikel/full-bitcoind-node-debian-7-server  the debug file is too large are 4.5 Mb how can I do to publish
11  Bitcoin / Bitcoin Technical Support / Command bitcoin-cli getaccountaddress method not found on: May 30, 2015, 07:01:42 PM
I was able to compile and install bitcoin on debian 7 and when do: bitcoind-cli getinfo

{
    "version" : 100200,
    "protocolversion" : 70002,
    "blocks" : 330412,
    "timeoffset" : -4,
    "connections" : 17,
    "proxy" : "",
    "difficulty" : 39603666252.41841125,
    "testnet" : false,
    "relayfee" : 0.00001000,
    "errors" : ""
}

But if I want to create a new address and do: bitcoin-cli getaccountaddress I get a strange error " error {"code": - 32601, "message": "Method not found"} "
12  Bitcoin / Bitcoin Technical Support / Re: Installed bitcoind on server debian 8 on: May 29, 2015, 04:42:58 PM
Now bitcoind it works perfectly and is already downloading the chains of blocks  Cheesy Cheesy Cheesy
13  Bitcoin / Bitcoin Technical Support / Re: Installed bitcoind on server debian 8 on: May 29, 2015, 04:26:17 PM
I would not bother too much but I have another problem the demon bitcoind when I type "bitcoin-cli getinfo" gives me back:

error: You must set rpcpassword=<password> in the configuration file:
/home/maicol/.bitcoin/bitcoin.conf
If the file does not exist, create it with owner-readable-only file permissions.

The file contains bitcoin.conf:

server=1
daemon=1
rpcuser=user
rpcpassword=password
14  Bitcoin / Bitcoin Technical Support / Re: Installed bitcoind on server debian 8 on: May 29, 2015, 04:11:56 PM
Finally succeeded, thanks a lot  Cheesy
15  Bitcoin / Bitcoin Technical Support / Re: Installed bitcoind on server debian 8 on: May 29, 2015, 03:41:06 PM
Hello, sorry to say with so much delay, but yesterday I decided to try it on debian install bitcoind 7 but without results. To download and fill bitcoind am following this guide http://bitcoin-austria.at/artikel/full-bitcoind-node-debian-7-server  but when do just about configuration terminal ./autogen.sh me this outpunt:

configure.ac:5: installing `build-aux/config.guess'
configure.ac:5: installing `build-aux/config.sub'
configure.ac:9: installing `build-aux/install-sh'
configure.ac:9: installing `build-aux/missing'
Makefile.am:3: Libtool library used but `LIBTOOL' is undefined
Makefile.am:3:   The usual way to define `LIBTOOL' is to add `LT_INIT'
Makefile.am:3:   to `configure.ac' and run `aclocal' and `autoconf' again.
Makefile.am:3:   If `LT_INIT' is in `configure.ac', make sure
Makefile.am:3:   its definition is in aclocal's search path.
Makefile.am: installing `build-aux/depcomp'
autoreconf: automake failed with exit status: 1
16  Bitcoin / Bitcoin Technical Support / Installed bitcoind on server debian 8 on: May 28, 2015, 06:44:52 AM
I would need to be installed on a server bitcoind debian 8 so you can make interact PHP with bitcoin client but the guides that I found online are all debian 7 and when the use of debian 8 are full of errors. Then yesterday I found out that the development of bitcoind for debian Stopped at a couple of years ago. So I'm wondering if anyone knows how I can install it on debian 8 server I should I use a ubuntu server.

Ps. Sorry for my bad english

17  Local / Discussioni avanzate e sviluppo / Re: Ma gli exchanger come fanno ad associare ad ogni account un indirizzo btc on: April 12, 2015, 08:23:12 PM
Grazie mille davvo, ho trovato un documento molto interessante proprio per il wallet core e php il link per chiunque sia interessato è questo: https://en.bitcoin.it/wiki/PHP_developer_intro. Ho già scaricato i binari sul un server, non appena finisco di aggiornare il wallet faccio una prova.
18  Local / Discussioni avanzate e sviluppo / Ma gli exchanger come fanno ad associare ad ogni account un indirizzo btc on: April 11, 2015, 09:15:02 PM
Buona sera a tutti, una domanda che mi faccio da tempo e come fanno i vari siti di exchanger ad associare ad ogni account un indirizzo btc. Mi spiego meglio, la piattaforma di trading online cex.io mette a disposizione di ogni utente registrato al sito un portafoglio btc su cui è possibile versare, prelevare, inviare e ricevere btc. Quello che mi chiedo è, come riescono ad far interagire un form di una pagina php con i wallet bitcoin che si trovano nei loro server? E che tipo di wallet bitcoin utilizzano? Mi piacerebbe tanto trovare un po di documentazione, anche solo per fare una prova sul mio nuovo sito  Grin
19  Local / Off-Topic (Italiano) / Re: Topic di Benvenuto/Presentazioni on: January 05, 2015, 02:55:43 PM
Ciao a tutti, da oggi ci sono anche io in questa community anche se uso i BTC  da più di un' anno.
20  Local / Italiano (Italian) / Re: [Bitcoin-Stocks.com] cosa ne pensate? on: January 04, 2015, 07:58:31 PM
Si fa la stessa cosa con la moneta fiat, più che scema ponzi io lo definirei uno schema piramidale. Non vorrei dire una stupidaggine ma penso che in Italia sia illegale.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!