Hi - I'm not sure if this is the right place to put this or not but I've got bitcoind installed on ubuntu and I'm trying to use it on a website via php using the jsonRPCClient.php download. I've got it all working great locally but live I just get a blank page. From terminal I can do:
And i get info so it's definitely running but from a web page I just get a blank, no errors nothing. I've checked the username and password (a few times now) and all seems good.
All the code is i'm running is:
$this->bitcoin = new jsonRPCClient('http://'.$this->bitcoin_user.':'.$this->bitcoin_password.'@127.0.0.1:8332/');
$test = $this->bitcoin->getinfo();
print_r ($test);
as i say this works great locally but not live. The blockchain hasn't quite finished downloading but I would have thought it would still give the info?
Any ideas would be amazing - thanks