Pages:
Author

Topic: [ANN] piWallet - Opensource Online Altcoin Wallet - page 4. (Read 29067 times)

sr. member
Activity: 644
Merit: 250
Hi!
I'm trying to setup your PiWallet

Everything set up, but I see 0 Balance all the time..

Transactions are showing correctly, but balance not updating.
Also getting that Notice Warning about the fee


Last 10 transactions:

Notice: Undefined index: fee in /var/www/html/PiWallet/view/wallet.php on line 126
Notice: Undefined index: fee in /var/www/html/PiWallet/view/wallet.php on line 126

Date    Address    Type    Amount    Fee    Confs    Info
7/21/2017 04:41 pm    LVSVKxmGm6oPd8LjzfZxz9yUCjkkwNza5q    Received    1       15    Info
7/21/2017 04:46 pm    LVSVKxmGm6oPd8LjzfZxz9yUCjkkwNza5q    Received    1       10    Info

Any Idea?
full member
Activity: 218
Merit: 101
Just wanted to remind people that this still exists.
full member
Activity: 218
Merit: 101
Very nice project, thank you for your time and work.

Since I prefer my websites not to include any files from 3rd party sites I changed the QR Code encoding to this lib:
http://phpqrcode.sourceforge.net/





https://github.com/johnathanmartin/piWallet/commit/ad25f72c277fc8d10986f534a0b32ef42b1eed6a

I just added this in, do you mind testing it out?

Nice! Thank you very much, works perfectly fine. Two little issues/small typos:

  • Line13[view/wallet]: There is the opening bracket for br missing
  • Line96[view/wallet]: The link contains a typo: addrss instead of address

HTH


That's embarrassing.

https://github.com/johnathanmartin/piWallet/commit/2719f79f4bfef5aeaea4f332c7b8456aeaa95142
legendary
Activity: 1612
Merit: 1608
精神分析的爸
Very nice project, thank you for your time and work.

Since I prefer my websites not to include any files from 3rd party sites I changed the QR Code encoding to this lib:
http://phpqrcode.sourceforge.net/





https://github.com/johnathanmartin/piWallet/commit/ad25f72c277fc8d10986f534a0b32ef42b1eed6a

I just added this in, do you mind testing it out?

Nice! Thank you very much, works perfectly fine. Two little issues/small typos:

  • Line13[view/wallet]: There is the opening bracket for br missing
  • Line96[view/wallet]: The link contains a typo: addrss instead of address

HTH
full member
Activity: 218
Merit: 101
Very nice project, thank you for your time and work.

Since I prefer my websites not to include any files from 3rd party sites I changed the QR Code encoding to this lib:
http://phpqrcode.sourceforge.net/





https://github.com/johnathanmartin/piWallet/commit/ad25f72c277fc8d10986f534a0b32ef42b1eed6a

I just added this in, do you mind testing it out?
full member
Activity: 319
Merit: 100
Here's what I changed to allow easybitcoin-PHP which doesn't require changing the php.ini for fopen. Bitcoin's dev wiki recommends not using jsonrpc directly and suggests easybitcoin-PHP.

The easybitcoin library
https://github.com/aceat64/EasyBitcoin-PHP


Add the library to the project :

In common.php
include('easybitcoin.php');

Remove the old
#include('jsonRPCClient.php');



In wallet/classes/Client.php

Change Row 12 :
               $this->jsonrpc = new jsonRPCClient($this->uri);
to
                $this->jsonrpc = new Bitcoin($user, $pass, $host, $port);



Thanks bro, its done.

can you tell me, how to fix this






Someone, please tell me, how to fix this? i want build my bitcoin online wallet for me..
newbie
Activity: 51
Merit: 0
This is a really great project that we will likely add to our basket of goodies soon.

Having an online wallet for a coin is very useful and can help a coin a lot.
full member
Activity: 319
Merit: 100
Here's what I changed to allow easybitcoin-PHP which doesn't require changing the php.ini for fopen. Bitcoin's dev wiki recommends not using jsonrpc directly and suggests easybitcoin-PHP.

The easybitcoin library
https://github.com/aceat64/EasyBitcoin-PHP


Add the library to the project :

In common.php
include('easybitcoin.php');

Remove the old
#include('jsonRPCClient.php');



In wallet/classes/Client.php

Change Row 12 :
               $this->jsonrpc = new jsonRPCClient($this->uri);
to
                $this->jsonrpc = new Bitcoin($user, $pass, $host, $port);



Thanks bro, its done.

can you tell me, how to fix this






sr. member
Activity: 308
Merit: 290
Here's what I changed to allow easybitcoin-PHP which doesn't require changing the php.ini for fopen. Bitcoin's dev wiki recommends not using jsonrpc directly and suggests easybitcoin-PHP.

The easybitcoin library
https://github.com/aceat64/EasyBitcoin-PHP


Add the library to the project :

In common.php
include('easybitcoin.php');

Remove the old
#include('jsonRPCClient.php');



In wallet/classes/Client.php

Change Row 12 :
               $this->jsonrpc = new jsonRPCClient($this->uri);
to
                $this->jsonrpc = new Bitcoin($user, $pass, $host, $port);



sr. member
Activity: 308
Merit: 290
please answer

1. if i login, i have mesage this

please help what's wrong?

2. where is i can
$rpc_host = "127.0.0.1";
$rpc_port = "8332";
$rpc_user = "bitcoinrpc";
$rpc_pass = "Cp68nBkCAADKkskaKSskaDKdmSYLtLJ";
for altcoin ?

i am not altcoin dev, but i want build this for my altcoin.


You will have to allow fopen in your php.ini

http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen





full member
Activity: 319
Merit: 100
please answer

1. if i login, i have mesage this

please help what's wrong?

2. where is i can
$rpc_host = "127.0.0.1";
$rpc_port = "8332";
$rpc_user = "bitcoinrpc";
$rpc_pass = "Cp68nBkCAADKkskaKSskaDKdmSYLtLJ";
for altcoin ?

i am not altcoin dev, but i want build this for my altcoin.

sr. member
Activity: 308
Merit: 290
Nice open source wallet. Thanks

A suggestion, in order to not need to open up fopen in the php.ini I'd recommend switching from
jsonRPCClient.php to easybitcoin.php. It only required a few changes to get that going

legendary
Activity: 1612
Merit: 1608
精神分析的爸
Very nice project, thank you for your time and work.

Since I prefer my websites not to include any files from 3rd party sites I changed the QR Code encoding to this lib:
http://phpqrcode.sourceforge.net/



hero member
Activity: 644
Merit: 500
support all altcoin wallet
and system secure nothing bug, and safe from hack
and you control in system online altcoin wallet or not
and how create online altcoin wallet use youre product, system only script php and use database mysql
or how to install youre product in my hosting
sr. member
Activity: 650
Merit: 350
NOBT - WNOBT your saving bank◕◡◕
Updates: Please leave the opensource link on the home page ("Powered by piWallet"). If you wish to remove this please consider atleast making a donation. The worst feeling is having someone else take credit for your work.

 Is this support multitude Altcoin or just one per site? also how much cost of removing copyright!
hero member
Activity: 518
Merit: 500
A beautiful project. Good to be open source.
I liked the password application sent to the mail.
If doing mining is super.  Grin Grin Grin    <=== You can think about it.  Wink
hero member
Activity: 696
Merit: 500
thanks problem resolved 
also i create a beautiful and fully responsive template for piWallet check it in action https://vpscoin.info

have you tested, how secure/safe of this web wallet? Do you plan to open source your template?

thanks


yes i test it and its work good with our coin VPSCoin https://www.vpscoin.me
we are waiting for new released of piWallet as i contact the developer to add more feature like export / import private keys
also we give our design to the developer for free + 10$ in btc as donation to help him to develop this awesome online wallet for altcoins
if you want i can design you a custom template for your online wallet just PM me
newbie
Activity: 29
Merit: 0
thanks problem resolved 
also i create a beautiful and fully responsive template for piWallet check it in action https://vpscoin.info

have you tested, how secure/safe of this web wallet? Do you plan to open source your template?

thanks

hero member
Activity: 696
Merit: 500
thanks problem resolved 
also i create a beautiful and fully responsive template for piWallet check it in action https://vpscoin.info
full member
Activity: 218
Merit: 101
i'm using php version 5.6.15
Server version: Apache/2.4.16 (Unix)
Cpanel::Easy::Apache v3.32.5 rev9999

i just install it to test it but got this error on the top of header
Code:
 Warning: mysqli::mysqli(): (28000/1045): Access denied for user 'user'@'localhost' (using password: YES) in /home/user1/public_html/wallet/index.php on line 5

and at the bottom of the page
 
Code:
Warning: mysqli::close(): Couldn't fetch mysqli in /home/user1/public_html/wallet/index.php on line 331

anyway i tried to register a test accoutnand got many errors !
bcz of the php version ?






The top error shows that an error is happening with the mySQL database. This most likely an incorrect username or password. Be sure to check those before continuing. If that doesent work, reinstall the database.
Pages:
Jump to: