easybitcoin sendfrom not working to errors

0

When I try to send bitcoins via move or sendfrom nothing happends, I dont het any errors. I use a very simple script:

try {
    $_SESSION['message'] = $bitcoin->sendfrom($_COOKIE['login_user'], $_POST['address'], $_POST['amount']);
}
    catch (Exception $e) {
    echo $e->getMessage();
}

I don't get any output in the session message and no error. The user cookie contains and existing user in bitcoind with enough money. POST address contains a valid address. POST ammount contains 0.0008. Does someone know what is wrong.

Jan Wytze

Posted 2016-02-02T09:05:50.330

Reputation: 289

Are you sure there are no errors? Did you try $bitcoin->error ?m1xolyd1an 2016-02-03T03:11:33.227

I already tried.Jan Wytze 2016-02-04T14:04:23.937

No answers