Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: chegmarco on June 06, 2017, 09:24:07 AM



Title: Is Bitcoind Network Synchronization Required for Using a Web Wallet in PHP ??
Post by: chegmarco on June 06, 2017, 09:24:07 AM
Hello all.

I think, it's been nearly a week now that I dig up what is causing the Bug that makes the PiWallet script (https://github.com/johnathanmartin/piWallet) still installed locally, can not generate new addresses. When you click on "Get a new Address", you should automatically see the Generated Address but I see that a problem still arises because no New Address is generated automatically but we see that even display the Message To Success (A new Adress was added to your wallet) but we do not see this address generated.

https://i.imgur.com/Vfl0D3O.jpg

This is also the case in the List of 10 Last Transactions (Date, Address, Type, Amount, Fee, Confs, Info) which is not displayed when a Transaction has been made.

So I wonder what is the basis of this problem. This is why I add to this message the Two (2) Files that contain the Generation of Addresses and Transactions so that you can see with me and help me correct this so that the Addresses and the Transaction List are displayed correctly As it should be.

Do you think that this error that causes the generated addresses not to appear are due to the fact that the Bitcoind Server has not yet fully synchronized?

As explained on the site of Bitcoin of the Developer (https://en.bitcoin.it/wiki/PHP_developer_intro), it is necessary to completely leave the Bitcoind Server to download and synchronize. So do you think this is what is the basis of this error ?


Title: Re: Is Bitcoind Network Synchronization Required for Using a Web Wallet in PHP ??
Post by: cr1776 on June 06, 2017, 09:55:05 AM
1. You mention  "Bitcoind Server" but - "piWallet is a secure opensource online altcoin wallet".  I don't know if the documentation is right or not but it says altcoin, not bitcoin. So perhaps the issue was s it only works with altcoins? 

2. "Setup coin daemons, mySQL & phpmyadmin on the server" - it says you have to have the daemons running, so depending on the coin that could make a difference.  Certainly for a transaction list, you'd need to be synced.

Since the developer says "altcoin", it seems like this belongs in the altcoin section, not the bitcoin section here.






*
1. https://github.com/johnathanmartin/piWallet and https://bitcointalk.org/index.php?topic=911212
2. https://github.com/johnathanmartin/piWallet/wiki


Title: Re: Is Bitcoind Network Synchronization Required for Using a Web Wallet in PHP ??
Post by: chegmarco on June 06, 2017, 10:06:04 AM
1. You mention  "Bitcoind Server" but - "piWallet is a secure opensource online altcoin wallet".  I don't know if the documentation is right or not but it says altcoin, not bitcoin. So perhaps the issue was s it only works with altcoins?  

2. "Setup coin daemons, mySQL & phpmyadmin on the server" - it says you have to have the daemons running, so depending on the coin that could make a difference.  Certainly for a transaction list, you'd need to be synced.

Since the developer says "altcoin", it seems like this belongs in the altcoin section, not the bitcoin section here.

*
1. https://github.com/johnathanmartin/piWallet and https://bitcointalk.org/index.php?topic=911212
2. https://github.com/johnathanmartin/piWallet/wiki

Thank you for your reply.

1- But if it is Altcoin, how to configure a Daemon Coin for this kind of ALTCOIN Script ?
2- Also does PiWallet really have no connection with the Bitcoind Server ?
 Otherwise, why, we notice on the page common.php (https://github.com/johnathanmartin/piWallet/blob/master/common.php), the informations:

$fullname = "Bitcoin"; //Website Title (Do Not include 'wallet') ?
$short = "BTC"; //Coin Short (BTC) ?
$blockchain_url = "http://blockchain.info/tx/"; //Blockchain Url  ?

Please clarify for me.