Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] piWallet - Opensource Online Altcoin Wallet
by
Joni22
on 22/03/2017, 10:32:14 UTC
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..