Post
Topic
Board Bitcoin Technical Support
Re: Help! to connect Bitcoin Core
by
o_solo_miner
on 16/08/2019, 16:56:58 UTC
first problem is solved, bitcoin-qt, leave it as it is now.

for your second problem:

bitcoin.conf
Code:
# [rpc]
   # Listen for JSON-RPC connections on this port
   rpcport=8332


your app credentials
Code:
public function btcReplenish(Request $request){
        $bitCoinD = new BitcoinClient([
            'host'          => self::RDC_HOST,
           [i] 'port'          => 8333,[/i]
            'user'          => self::RDC_USER,
            'password'      => self::RDC_PASS,
        ]);

did you try to use the bitcoin-qt rpc-port:
       'port'          => 8332,