Bitpay waits 15 minutes, i think that's reasonable...
Ok I'll up the time limit. I was just thinking of the volatility.
I tried setting up my own node but go nowhere. I know some PHP and that's about it.
It's doable using php...
Just use easybitcoin:
https://github.com/aceat64/EasyBitcoin-PHP
then build a connection
require_once('easybitcoin.php');
$bitcoin = new Bitcoin('[your rcp username here]','[your rcp password here]','[bitcoind\'s ip address here]','8332');
then you can just send requests
for example, to decode a raw transaction stored in the variable $raw
$decoded = decoderaw($raw, $bitcoin)
Thanks but that's all still over my head. I'm just about finished integrating the Blockchain API. It's looking good thus far.