My syntax looks good, though. I'm not missing any semicolons or ' in any of the fields, in easybitcoin.php or tally.php. I'm running PHP 5.3.10 on my ownCloud server.
I see where the problem is - RPC Ace (and tally.php) requires PHP version 5.4 or later.
PHP 5.3.10 is two and a half years old now. You should update, especially considering all the security fixes
Dunno why it's so old, I set my server up a few weeks ago and grabbbed a lamp stack... Ok, I'll go ahead and fix that :p
I was gonna code my own block crawler but if I can get this working, it'll save me lots of work
Edit: A little research shows that that's the newest version that's packaged with Ubuntu 12.04
Welp now I'm getting this:
blocks... PHP Warning: natsort() expects parameter 1 to be array, null given in /home/birdonwheelss/rpc-ace/extras/tally.php on line 64Then lines 65 and 68 throw errors as well because they also expect arrays.
...
Fixed it. That was because of an error in my config. I had
rpc=xxx instead of
rpcuser=xxx.
Seems to be working as expected (it's going through the transactions). Thanks for the help!