I've been running into some trouble using the jsonRPCClient.php. It seems to work flawlessly for most everything except when trying to execute a move command. Every time I try to do a move it throws an exception stating that it can't connect to the json-rpc server. I've searched the forums, the wiki, and google several times but to no avail. Has anyone run into this issue before and if so how can I fix it?
I'm providing some sample code to show what I am trying to achieve. It's not the code I'm using just a summary of whats going on so please don't be too critical.
Sample code
Code:
<?php
require_once 'jsonRPCClient.php';
$bitcoin = new jsonRPCClient("http://rpcuser:rpcpassword@127.0.0.1:8332/");
$accounts=array('a'=>'userA', 'b'=>'userB');
try{
print_r($bitcoin->getinfo()); //shows data
print_r($bitcoin->listaccounts()); //shows userA and userB with their balances
echo($bitcoin->getbalance($accounts['a'])); //echos 1.00
echo($bitcoin->getbalance($accounts['b'])); //echos 0.00
$bitcoin->move($accounts['a'], $accounts['b'], 0.5);
//throws exception "Unable to connect to http://rpcuser:rpcpassword@127.0.0.1:8332/"
}catch(Exception $e){
die(nl2br($e->getMessage()));
}
?>